mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-03 17:02:13 +01:00
120 lines
4.1 KiB
Java
120 lines
4.1 KiB
Java
/* Copyright (C) 2015-2020 Andreas Shimokawa, Carsten Pfeiffer, Daniele
|
|
Gobbetti, Lem Dulfo
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
package nodomain.freeyourgadget.gadgetbridge.activities;
|
|
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import android.os.Bundle;
|
|
|
|
import java.util.Locale;
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
|
import nodomain.freeyourgadget.gadgetbridge.util.AndroidUtils;
|
|
|
|
|
|
public abstract class AbstractGBActivity extends AppCompatActivity implements GBActivity {
|
|
private boolean isLanguageInvalid = false;
|
|
|
|
public static final int NONE = 0;
|
|
public static final int NO_ACTIONBAR = 1;
|
|
|
|
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
String action = intent.getAction();
|
|
if (action == null) {
|
|
return;
|
|
}
|
|
switch (action) {
|
|
case GBApplication.ACTION_LANGUAGE_CHANGE:
|
|
setLanguage(GBApplication.getLanguage(), true);
|
|
break;
|
|
case GBApplication.ACTION_QUIT:
|
|
finish();
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
public void setLanguage(Locale language, boolean invalidateLanguage) {
|
|
if (invalidateLanguage) {
|
|
isLanguageInvalid = true;
|
|
}
|
|
AndroidUtils.setLanguage(this, language);
|
|
}
|
|
|
|
public static void init(GBActivity activity) {
|
|
init(activity, NONE);
|
|
}
|
|
|
|
public static void init(GBActivity activity, int flags) {
|
|
if (GBApplication.isDarkThemeEnabled()) {
|
|
if ((flags & NO_ACTIONBAR) != 0) {
|
|
if (GBApplication.isAmoledBlackEnabled())
|
|
activity.setTheme(R.style.GadgetbridgeThemeBlack_NoActionBar);
|
|
else
|
|
activity.setTheme(R.style.GadgetbridgeThemeDark_NoActionBar);
|
|
} else {
|
|
if (GBApplication.isAmoledBlackEnabled())
|
|
activity.setTheme(R.style.GadgetbridgeThemeBlack);
|
|
else
|
|
activity.setTheme(R.style.GadgetbridgeThemeDark);
|
|
}
|
|
} else {
|
|
if ((flags & NO_ACTIONBAR) != 0) {
|
|
activity.setTheme(R.style.GadgetbridgeTheme_NoActionBar);
|
|
} else {
|
|
activity.setTheme(R.style.GadgetbridgeTheme);
|
|
}
|
|
}
|
|
activity.setLanguage(GBApplication.getLanguage(), false);
|
|
}
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
IntentFilter filterLocal = new IntentFilter();
|
|
filterLocal.addAction(GBApplication.ACTION_QUIT);
|
|
filterLocal.addAction(GBApplication.ACTION_LANGUAGE_CHANGE);
|
|
LocalBroadcastManager.getInstance(this).registerReceiver(mReceiver, filterLocal);
|
|
|
|
init(this);
|
|
super.onCreate(savedInstanceState);
|
|
}
|
|
|
|
@Override
|
|
protected void onResume() {
|
|
super.onResume();
|
|
if (isLanguageInvalid) {
|
|
isLanguageInvalid = false;
|
|
recreate();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onDestroy() {
|
|
LocalBroadcastManager.getInstance(this).unregisterReceiver(mReceiver);
|
|
super.onDestroy();
|
|
}
|
|
}
|