You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
58 lines
1.8 KiB
Java
58 lines
1.8 KiB
Java
package com.topjohnwu.magisk.components;
|
|
|
|
import android.content.res.Configuration;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.Nullable;
|
|
import android.support.v7.app.AppCompatActivity;
|
|
import android.view.WindowManager;
|
|
|
|
import com.topjohnwu.magisk.MagiskManager;
|
|
import com.topjohnwu.magisk.R;
|
|
import com.topjohnwu.magisk.utils.CallbackEvent;
|
|
|
|
public class Activity extends AppCompatActivity {
|
|
|
|
public Activity() {
|
|
super();
|
|
Configuration configuration = new Configuration();
|
|
configuration.setLocale(MagiskManager.locale);
|
|
applyOverrideConfiguration(configuration);
|
|
}
|
|
|
|
@Override
|
|
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
if (this instanceof CallbackEvent.Listener) {
|
|
((CallbackEvent.Listener) this).registerEvents();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onDestroy() {
|
|
if (this instanceof CallbackEvent.Listener) {
|
|
((CallbackEvent.Listener) this).unregisterEvents();
|
|
}
|
|
super.onDestroy();
|
|
}
|
|
|
|
@Override
|
|
public MagiskManager getApplicationContext() {
|
|
return (MagiskManager) super.getApplicationContext();
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
}
|