2015-02-08 21:53:12 +00:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
2019-09-18 05:40:18 +00:00
|
|
|
import android.app.ActivityManager;
|
2019-03-25 20:23:38 +00:00
|
|
|
import android.content.Context;
|
2019-09-18 05:40:18 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
2015-02-10 23:33:57 +00:00
|
|
|
import android.os.Bundle;
|
2020-12-07 00:21:03 +00:00
|
|
|
import android.view.WindowManager;
|
|
|
|
|
2020-09-17 05:11:05 +00:00
|
|
|
import androidx.appcompat.app.ActionBar;
|
2020-08-19 00:06:26 +00:00
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
2015-02-10 23:33:57 +00:00
|
|
|
|
2021-01-15 05:51:53 +00:00
|
|
|
import org.session.libsession.utilities.TextSecurePreferences;
|
|
|
|
import org.session.libsession.utilities.dynamiclanguage.DynamicLanguageActivityHelper;
|
|
|
|
import org.session.libsession.utilities.dynamiclanguage.DynamicLanguageContextWrapper;
|
2015-09-30 23:42:39 +00:00
|
|
|
|
2019-09-18 05:40:18 +00:00
|
|
|
import network.loki.messenger.R;
|
|
|
|
|
2015-06-09 14:37:20 +00:00
|
|
|
public abstract class BaseActionBarActivity extends AppCompatActivity {
|
2015-02-10 23:33:57 +00:00
|
|
|
private static final String TAG = BaseActionBarActivity.class.getSimpleName();
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2020-09-17 05:11:05 +00:00
|
|
|
ActionBar actionBar = getSupportActionBar();
|
|
|
|
if (actionBar != null) {
|
|
|
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
|
|
|
actionBar.setHomeButtonEnabled(true);
|
|
|
|
}
|
|
|
|
|
2015-02-10 23:33:57 +00:00
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
}
|
|
|
|
|
2015-09-30 23:42:39 +00:00
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
initializeScreenshotSecurity();
|
2019-03-25 20:23:38 +00:00
|
|
|
DynamicLanguageActivityHelper.recreateIfNotInCorrectLanguage(this, TextSecurePreferences.getLanguage(this));
|
2019-09-18 05:40:18 +00:00
|
|
|
String name = getResources().getString(R.string.app_name);
|
|
|
|
Bitmap icon = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher_foreground);
|
2020-01-09 00:35:43 +00:00
|
|
|
int color = getResources().getColor(R.color.app_icon_background);
|
2019-09-18 05:40:18 +00:00
|
|
|
setTaskDescription(new ActivityManager.TaskDescription(name, icon, color));
|
2020-03-19 02:45:55 +00:00
|
|
|
}
|
|
|
|
|
2020-09-17 05:11:05 +00:00
|
|
|
@Override
|
|
|
|
public boolean onSupportNavigateUp() {
|
|
|
|
if (super.onSupportNavigateUp()) return true;
|
|
|
|
|
|
|
|
onBackPressed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-30 23:42:39 +00:00
|
|
|
private void initializeScreenshotSecurity() {
|
2019-03-20 22:09:27 +00:00
|
|
|
if (TextSecurePreferences.isScreenSecurityEnabled(this)) {
|
2015-09-30 23:42:39 +00:00
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
} else {
|
|
|
|
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 20:23:38 +00:00
|
|
|
@Override
|
|
|
|
protected void attachBaseContext(Context newBase) {
|
|
|
|
super.attachBaseContext(DynamicLanguageContextWrapper.updateContext(newBase, TextSecurePreferences.getLanguage(newBase)));
|
|
|
|
}
|
2015-02-08 21:53:12 +00:00
|
|
|
}
|