103 lines
3.2 KiB
Java
Raw Normal View History

2017-02-07 02:01:32 +08:00
package com.topjohnwu.magisk.components;
import android.content.pm.PackageManager;
2017-10-29 14:43:43 +08:00
import android.content.res.AssetManager;
2017-07-22 22:14:02 +08:00
import android.content.res.Configuration;
2017-10-29 14:43:43 +08:00
import android.content.res.Resources;
2017-07-23 00:12:15 +08:00
import android.os.Bundle;
2017-10-29 14:43:43 +08:00
import android.support.annotation.Keep;
import android.support.annotation.NonNull;
2017-07-23 00:12:15 +08:00
import android.support.annotation.Nullable;
2017-02-07 02:01:32 +08:00
import android.support.v7.app.AppCompatActivity;
2017-05-24 21:21:15 +02:00
import android.view.WindowManager;
2017-02-07 02:01:32 +08:00
import com.topjohnwu.magisk.MagiskManager;
2017-05-24 21:21:15 +02:00
import com.topjohnwu.magisk.R;
import com.topjohnwu.magisk.utils.Topic;
2017-10-30 03:45:22 +08:00
import com.topjohnwu.magisk.utils.Utils;
2017-02-07 02:01:32 +08:00
public class Activity extends AppCompatActivity {
2017-10-29 14:43:43 +08:00
private AssetManager mAssetManager = null;
private Resources mResources = null;
2017-07-22 22:14:02 +08:00
public Activity() {
super();
Configuration configuration = new Configuration();
configuration.setLocale(MagiskManager.locale);
applyOverrideConfiguration(configuration);
}
2017-07-23 00:12:15 +08:00
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (this instanceof Topic.Subscriber) {
((Topic.Subscriber) this).subscribeTopics();
2017-07-23 00:12:15 +08:00
}
}
@Override
protected void onDestroy() {
if (this instanceof Topic.Subscriber) {
((Topic.Subscriber) this).unsubscribeTopics();
2017-07-23 00:12:15 +08:00
}
super.onDestroy();
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
2017-11-06 05:36:20 +08:00
MagiskManager mm = getMagiskManager();
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
2017-11-06 05:36:20 +08:00
if (mm.permissionGrantCallback != null) {
mm.permissionGrantCallback.run();
}
}
2017-11-06 05:36:20 +08:00
mm.permissionGrantCallback = null;
}
2017-10-29 14:43:43 +08:00
@Override
public AssetManager getAssets() {
return mAssetManager == null ? super.getAssets() : mAssetManager;
}
@Override
public Resources getResources() {
return mResources == null ? super.getResources() : mResources;
}
2017-09-03 15:35:14 +08:00
public MagiskManager getMagiskManager() {
2017-02-22 04:13:21 +08:00
return (MagiskManager) super.getApplicationContext();
2017-02-07 02:01:32 +08:00
}
2017-05-24 21:21:15 +02:00
protected void setFloating() {
boolean isTablet = getResources().getBoolean(R.bool.isTablet);
if (isTablet) {
WindowManager.LayoutParams params = getWindow().getAttributes();
params.height = getResources().getDimensionPixelSize(R.dimen.floating_height);
params.width = getResources().getDimensionPixelSize(R.dimen.floating_width);
params.alpha = 1.0f;
params.dimAmount = 0.6f;
params.flags |= 2;
getWindow().setAttributes(params);
setFinishOnTouchOutside(true);
}
}
2017-10-29 14:43:43 +08:00
@Keep
public void swapResources(String dexPath) {
2017-10-30 03:45:22 +08:00
mAssetManager = Utils.getAssets(dexPath);
if (mAssetManager == null)
2017-10-29 14:43:43 +08:00
return;
Resources res = super.getResources();
mResources = new Resources(mAssetManager, res.getDisplayMetrics(), res.getConfiguration());
mResources.newTheme().setTo(super.getTheme());
}
@Keep
public void restoreResources() {
mAssetManager = null;
mResources = null;
}
2017-02-07 02:01:32 +08:00
}