开发者

How can I make my application as home application

开发者 https://www.devze.com 2023-01-10 16:12 出处:网络
I have a wizard application that I want to make H开发者_JS百科ome application. How can I convert regular application into a home application.Simply by adding this line in your manifest!

I have a wizard application that I want to make H开发者_JS百科ome application. How can I convert regular application into a home application.


Simply by adding this line in your manifest!

 <activity android:name="Home"
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.HOME"/>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

Should work :-p

0

精彩评论

暂无评论...
验证码 换一张
取 消