2015-02-08 21:53:12 +00:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
2015-10-19 18:23:12 +00:00
|
|
|
import android.annotation.TargetApi;
|
2015-06-22 16:52:46 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Build;
|
2015-10-19 18:23:12 +00:00
|
|
|
import android.os.Build.VERSION_CODES;
|
2015-02-10 23:33:57 +00:00
|
|
|
import android.os.Bundle;
|
2015-02-08 21:53:12 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2015-06-27 03:14:51 +00:00
|
|
|
import android.support.v4.app.ActivityCompat;
|
|
|
|
import android.support.v4.app.ActivityOptionsCompat;
|
2015-06-09 14:37:20 +00:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
2015-02-08 21:53:12 +00:00
|
|
|
import android.view.KeyEvent;
|
2015-06-22 16:52:46 +00:00
|
|
|
import android.view.View;
|
2015-02-10 23:33:57 +00:00
|
|
|
import android.view.ViewConfiguration;
|
2015-09-30 23:42:39 +00:00
|
|
|
import android.view.WindowManager;
|
2015-02-10 23:33:57 +00:00
|
|
|
|
2018-08-01 15:09:24 +00:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2015-09-30 23:42:39 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
|
2015-02-10 23:33:57 +00:00
|
|
|
import java.lang.reflect.Field;
|
2015-02-08 21:53:12 +00:00
|
|
|
|
|
|
|
|
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) {
|
|
|
|
if (BaseActivity.isMenuWorkaroundRequired()) {
|
|
|
|
forceOverflowMenu();
|
|
|
|
}
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
}
|
|
|
|
|
2015-09-30 23:42:39 +00:00
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
initializeScreenshotSecurity();
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:53:12 +00:00
|
|
|
@Override
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
2015-02-10 23:33:57 +00:00
|
|
|
return (keyCode == KeyEvent.KEYCODE_MENU && BaseActivity.isMenuWorkaroundRequired()) || super.onKeyDown(keyCode, event);
|
2015-02-08 21:53:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onKeyUp(int keyCode, @NonNull KeyEvent event) {
|
2015-02-10 23:33:57 +00:00
|
|
|
if (keyCode == KeyEvent.KEYCODE_MENU && BaseActivity.isMenuWorkaroundRequired()) {
|
2015-02-08 21:53:12 +00:00
|
|
|
openOptionsMenu();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return super.onKeyUp(keyCode, event);
|
|
|
|
}
|
2015-02-10 23:33:57 +00:00
|
|
|
|
2015-09-30 23:42:39 +00:00
|
|
|
private void initializeScreenshotSecurity() {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH &&
|
|
|
|
TextSecurePreferences.isScreenSecurityEnabled(this))
|
|
|
|
{
|
|
|
|
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
} else {
|
|
|
|
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-10 23:33:57 +00:00
|
|
|
/**
|
|
|
|
* Modified from: http://stackoverflow.com/a/13098824
|
|
|
|
*/
|
|
|
|
private void forceOverflowMenu() {
|
|
|
|
try {
|
|
|
|
ViewConfiguration config = ViewConfiguration.get(this);
|
|
|
|
Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
|
|
|
|
if(menuKeyField != null) {
|
|
|
|
menuKeyField.setAccessible(true);
|
|
|
|
menuKeyField.setBoolean(config, false);
|
|
|
|
}
|
2015-06-09 14:37:20 +00:00
|
|
|
} catch (IllegalAccessException e) {
|
|
|
|
Log.w(TAG, "Failed to force overflow menu.");
|
|
|
|
} catch (NoSuchFieldException e) {
|
2015-02-10 23:33:57 +00:00
|
|
|
Log.w(TAG, "Failed to force overflow menu.");
|
|
|
|
}
|
|
|
|
}
|
2015-06-22 16:52:46 +00:00
|
|
|
|
|
|
|
protected void startActivitySceneTransition(Intent intent, View sharedView, String transitionName) {
|
2015-06-27 03:14:51 +00:00
|
|
|
Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(this, sharedView, transitionName)
|
|
|
|
.toBundle();
|
|
|
|
ActivityCompat.startActivity(this, intent, bundle);
|
2015-06-22 16:52:46 +00:00
|
|
|
}
|
2015-10-19 18:23:12 +00:00
|
|
|
|
|
|
|
@TargetApi(VERSION_CODES.LOLLIPOP)
|
|
|
|
protected void setStatusBarColor(int color) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
getWindow().setStatusBarColor(color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:53:12 +00:00
|
|
|
}
|