Oh yes that's right.  You can simply have a splash screen launch activity
and have your logic there.  Or still have your own application subclass and
have your launch logic in the application onCreate.  Mostly a matter of
taste on how you do it though.

2011/12/23 Kostya Vasilyev <kmans...@gmail.com>

> The application object is not an entry point into an Android package.
> There is no UI for the user to launch the application object.
>
> Activities is what users launch, and is that what they see in the launcher.
> 24.12.2011 3:49 пользователь "Miguel Morales" <therevolti...@gmail.com>
> написал:
>
> I haven't done this myself but I *think* you dont have to set a default
>> activity.
>> You might then be able to subclass the Application class and override
>> onStart() and launch an intent there.
>> Again, not even sure if this is possible but might be a bit cleaner.
>>
>> 2011/12/23 Kostya Vasilyev <kmans...@gmail.com>
>>
>>> Set configuration activity as the launcher entry point in the manifest,
>>> check your flags, start the main activity, call finish. Do it all inside
>>> onCreate before setContentView.
>>>
>>> Method 2, exactly opposite: set main activity as the entry point, check
>>> flags, call startActivityForResult for the config activity.
>>>  24.12.2011 3:31 пользователь "John Goche" <johngoch...@googlemail.com>
>>> написал:
>>>
>>>
>>>> Hello,
>>>>
>>>> I am having the following issue. In my application I need to display
>>>> activity A the first time the application is launched so that the user
>>>> can configure some parameters on a form. When the user completes
>>>> the form a preference is set so that every other time the user starts
>>>> the application the application starts directly with activity B.
>>>>
>>>> Now I am having some trouble coding this behavior because the
>>>> android manifest file does not seem to allow for this conditional
>>>> launching. It is always the same activity which seems must be
>>>> launched first.
>>>>
>>>> How can I solve this issue? I hope I have explained the problem
>>>> clearly. Any help would be sincerely appreciated.
>>>>
>>>> Thanks,
>>>>
>>>> John Goche
>>>>
>>>> --
>>>> 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
>>>
>>>  --
>>> 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
>>>
>>
>>
>>
>> --
>> ~ Jeremiah:9:23-24
>> Android 2D MMORPG: http://solrpg.com/,
>> http://www.youtube.com/user/revoltingx
>>
>> --
>> 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
>
>  --
> 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
>



-- 
~ Jeremiah:9:23-24
Android 2D MMORPG: http://solrpg.com/,
http://www.youtube.com/user/revoltingx

-- 
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