public void onHomePressed() {
String myPkgName = getPackageName();
SharedPreferences sp = getSharedPreferences("general_file", 0);
if (res == null) {
if (getHomes() != null && !getHomes().equals(myPkgName) && sp.getBoolean("home_buzaitixing", true)) {
Intent intent = new Intent(this, (Class<?>) IndexActivity.class);
intent.addFlags(268435456);
PendingIntent.getActivity(this, 0, intent, 0).send();
return;
}
return;
}
if (!res.activityInfo.packageName.equals(myPkgName) && sp.getBoolean("home_buzaitixing", true)) {
Intent intent2 = new Intent(this, (Class<?>) IndexActivity.class);
intent2.addFlags(268435456);
PendingIntent.getActivity(this, 0, intent2, 0).send();
}
}
|