admin管理员组文章数量:1352184
We are implementing an app that is having a WebView and load a website. And this app is implemented as a launcher app, and we don't want the user to go to any other launcher. (This is for STB devices and not for mobile and will not be added to Play store). Our app will open a set of installed apps in the device as well. And we were able to switch back to our app when press back button from those apps. The only question is with the Home button now.
Even though the intent category is set to **DEFAULT **in the manifest, we are not able to set this app as the default launcher of a Google certified devices.
The same app is **able **to set as the default launcher at the first Home button press in devices that are not Google certified.
Our requirement is that whenever user presses the Home button from the remote, it should go to our app home and not the system launcher. Android version is 12.
We don't have root permission to the device (it is Google certified device). How can we do this?
Following is the manifest extract
<activity
android:name="com.myapp.MainActivity"
android:alwaysRetainTaskState="true"
android:launchMode="singleTask"
android:clearTaskOnLaunch="false"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true">
<intent-filter android:priority="1000">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
And starting intent as follow
Intent i = new Intent(Intent.ACTION_MAIN);
i.setComponent(new Component("com.myapp", "com.myapp.MainActivity"));
i.addCategory(Intent.CATEGORY_HOME);
i.addCategory(Intent.CATEGORY_DEFAULT);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
本文标签: android intentHow to replace default launcher by my app in Google certified deviceStack Overflow
版权声明:本文标题:android intent - How to replace default launcher by my app in Google certified device - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909459a2560124.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论