Re: [android-developers] Login form implementation options

2010-07-07 Thread TreKing
On Mon, Jul 5, 2010 at 4:53 AM, Tudor Tihan wrote: > So, what other options are there for the implementation of a screen such as > a login form? > I really like a separate activity / screen is an obvious choice here ... ---

Re: [android-developers] Login form implementation options

2010-07-05 Thread paulb
Have you considered a custom dialog? http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog On Mon, Jul 5, 2010 at 7:53 PM, Tudor Tihan wrote: > Hello, > > I am trying to implement a login form for an Android application and I > am wondering what options are there. > > So far I'

[android-developers] Login form implementation options

2010-07-05 Thread Tudor Tihan
Hello, I am trying to implement a login form for an Android application and I am wondering what options are there. So far I've tried this: 1. add non-visible input controls to the main layout, and, when the login form is supposed to appear, I hide the other views and show the login form controls