Android Homescreen
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. I have seen a few
Solution 1:
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>
Post a Comment for "Android Homescreen"