Android Homescreen

前端 未结 1 1877
鱼传尺愫
鱼传尺愫 2020-12-06 14:42

Hey folks, this is my first post so go easy on me!

I want to develop an application where you can navigate through 7 or so screens like you can on the homescreen.

相关标签:
1条回答
  • 2020-12-06 15:20

    You'll need to edit your manifest, so that the application knows which Activity to use when it first launches.

      <application>  
        <activity android:name=".YourActivityName" android:label="Your Label">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
      </application>
    
    0 讨论(0)
提交回复
热议问题