I think I already know the answer to this, but I just wanted to
confirm (I think no horrible ramifications):

Are there any ramifications to changing the "MAIN"/"LAUNCHER" tags in
the manifest to a different activity?  See example below:

(original manifest segment)
-----------------------
<activity android:name=".MyAppMain"
   android:label="@string/app_name" android:theme="@android:style/
Theme.NoTitleBar">
          <intent-filter>
               <action android:name="android.intent.action.MAIN" />
               <category android:name="android.intent.category.LAUNCHER" />
           </intent-filter>
</activity>
<activity android:name=".MySecondActivity"
  android:label="@string/numbertwo"
  android:theme="@android:style/Theme.NoTitleBar">
</activity>
------------------------


(new manifest segment)
------------------------
<activity android:name=".MyAppMain"
   android:label="@string/app_name" android:theme="@android:style/
Theme.NoTitleBar">
</activity>
<activity android:name=".MySecondActivity"
  android:label="@string/numbertwo"
  android:theme="@android:style/Theme.NoTitleBar">
          <intent-filter>
               <action android:name="android.intent.action.MAIN" />
               <category android:name="android.intent.category.LAUNCHER" />
           </intent-filter>
</activity>
------------------------

Thanks,

Justin

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to