1 清除已经设置默认launcher的情况
2 开机需要自动打开到特定launcher
3 home需要返回特定launcher
修改检测开机广播,清除默认程序设置和设置默认launcher
---
.../android/tv/settings/ | 46 ++++++++++++++++++++++
diff --git a/apps/TvSettings/Settings/src/com/android/tv/settings/ b/apps/TvSettings/Settings/src/com/android/tv/settings/
index 26ce330..1c8c5a6 100755
--- a/apps/TvSettings/Settings/src/com/android/tv/settings/
+++ b/apps/TvSettings/Settings/src/com/android/tv/settings/
@@ -10,6 +10,12 @@ import ;
import ;
import ;
+import ;
+import ;
+import ;
+import ;
+import ;
+import ;
import ;
public final class FirstBootupRequest extends BroadcastReceiver {
@@ -27,6 +33,7 @@ public final class FirstBootupRequest extends BroadcastReceiver {
((),
.ALWAYS_FINISH_ACTIVITIES, 0);
}
+ setDefaultActivity(context);
}
@@ -45,4 +52,43 @@ public final class FirstBootupRequest extends BroadcastReceiver {
}
}
+ private void setDefaultActivity(Context mContext) {
+ PackageManager pm = ();
+ Intent intent = new Intent(Intent.ACTION_MAIN);
+ (Intent.CATEGORY_HOME);
+ List<ResolveInfo> resolveInfoList = (intent, 0);
+ if (resolveInfoList != null) {
+ int size = ();
+ for (int j = 0; j < size; j++) {
+ final ResolveInfo r = (j);
+ ("bootup", "resolveInfoList info:"+ ());
+ if ((())) {
+ (j);
+ size -= 1;
+ break;
+ }
+ }
+
+
+ String packageName = ("");
+ String activityName = ("");
+ ("bootup", "bootup packageName=" +packageName);
+ ("bootup", "bootup activityName=" +activityName);
+ ComponentName[] set = new ComponentName[size];
+ ComponentName defaultLauncher = new ComponentName(packageName,activityName);
+ int defaultMatch = 0;
+ for (int i = 0; i < size; i++) {
+ final ResolveInfo resolveInfo = (i);
+ ("bootup", "resolveInfo info:"+());
+ set[i] = new ComponentName(, );
+ //does default launcher is exit
+ if (().equals()) {
+ defaultMatch = ;
+ //清除查询到的有home属性的apk的默认程序设置
+ ();
+ }
+ }
+ ("bootup", "defaultMatch=" + (defaultMatch));
+ IntentFilter filter = new IntentFilter();
+ (Intent.ACTION_MAIN);
+ (Intent.CATEGORY_HOME);
+ (Intent.CATEGORY_DEFAULT);
+ //添加launcher的默认程序设置
+ (filter, defaultMatch, set, defaultLauncher);
+ }
+ }
+
}
--
2.7.4
修改开机打开默认launcher
diff --git a/base/services/core/java/com/android/server/pm/ b/base/services/core/java/com/android/server/pm/
index 81cfce6..984ec2f 100755
--- a/base/services/core/java/com/android/server/pm/
+++ b/base/services/core/java/com/android/server/pm/
@@ -21035,12 +21035,13 @@ public class PackageManagerService extends
if ( != null && (
, packageName)) {
+ ("bootup","PackageManagerService getHomeActivitiesAsUser:"
+ +);
//return new ComponentName(,
// );
+ String cuspackageName = ("");
+ String activityName = ("");
+ return new ComponentName(cuspackageName,activityName);
}
}
return null;
@@ -21091,8 +21092,8 @@ public class PackageManagerService extends
return false;
}
final String currentPackageName = (userId);
- //("DefaultActivity", "PackageManagerService packageName " + packageName);
- //("DefaultActivity", "PackageManagerService currentPackageName " + currentPackageName);
+ ("bootup", "PackageManagerService packageName " + packageName);
+ ("bootup", "PackageManagerService currentPackageName " + currentPackageName);
if ((currentPackageName, packageName)) {
return false;
}
@@ -21102,7 +21103,9 @@ public class PackageManagerService extends
// PermissionController manages default home directly.
return false;
}
- ("", userId, (successful) -> {
+ //(packageName, userId, (successful) -> {
+ String cuspackageName = ("");
+ (cuspackageName, userId, (successful) -> {
if (successful) {
postPreferredActivityChangedBroadcast(userId);
}
diff --git a/base/services/core/java/com/android/server/policy/ b/base/services/core/java/com/android/server/policy/
index 637dc3e..035e186 100755
--- a/base/services/core/java/com/android/server/policy/
+++ b/base/services/core/java/com/android/server/policy/
//这个位置根据自己情况看是否需要修改home键返回特定launcher
diff --git a/base/services/core/java/com/android/server/wm/ b/base/services/core/java/com/android/server/wm/
index 919141c..c87fbf0 100644
--- a/base/services/core/java/com/android/server/wm/
+++ b/base/services/core/java/com/android/server/wm/
@@ -40,6 +40,7 @@ import ;
import ;
import ;
import ;
+import ;
import ;
import ;
import ;
@@ -169,6 +170,9 @@ public class ActivityStartController {
}
void startHomeActivity(Intent intent, ActivityInfo aInfo, String reason, int displayId) {
+ ("bootup","ActivityStartController---startHomeActivity");
+ ("bootup",":"+);
+ ("bootup","ActivityStartController---startHomeActivity--intent:"+intent);
final ActivityOptions options = ();
(WINDOWING_MODE_FULLSCREEN);
if (!()) {
@@ -177,6 +181,46 @@ public class ActivityStartController {
// foreground instead of bring home stack to front.
(ACTIVITY_TYPE_HOME);
}
+
+ //add
+ if("".equals()){
+ String packageName = ("");
+ String activityName = ("");
+ if(packageName == null || activityName == null){
+ packageName = "xxx";
+ activityName = "";
+ }
+
+ Intent intentHome = new Intent(Intent.ACTION_MAIN);
+ (Intent.FLAG_ACTIVITY_NEW_TASK);
+ (Intent.CATEGORY_HOME);
+ ComponentName com = new ComponentName(packageName,activityName);
+ (com);
+
+ ActivityInfo aHomeInfo=null;
+ PackageManager pm = ();
+ List<ResolveInfo> resolveInfoList = (intent, 0);
+ if (resolveInfoList != null) {
+ int size = ();
+ for (int j = 0; j < size; j++) {
+ final ResolveInfo r = (j);
+ ("bootup", "ActivityStartController---resolveInfoList info:" + );
+ if ((packageName)) {
+ aHomeInfo = ;
+ }
+ }
+ }
+ if(aHomeInfo != null){
+ ("bootup", "ActivityStartController---customer home:" + );
+ aInfo = null;
+ aInfo = aHomeInfo;
+ }
+ intent = null;
+ intent = intentHome;
+ }
+ //end
+
(displayId);
mLastHomeActivityStartResult = obtainStarter(intent, "startHomeActivity: " + reason)
.setOutActivity(tmpOutRecord)