最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android intent - How to replace default launcher by my app in Google certified device - Stack Overflow

programmeradmin2浏览0评论

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);
发布评论

评论列表(0)

  1. 暂无评论