[android-developers] Re: Hide Activity

2010-04-29 Thread Ajay
Thank you!! On Apr 28, 6:16 pm, Mohan Krishna mohankrishnayarragu...@gmail.com wrote: hiajay, define your own theme and add that theme to the activity in manifest.xml that you want to change. create a new xml file in res/values, and in the androidmanifest.xml file add your that theme to

[android-developers] Re: Hide Activity

2010-04-28 Thread Ajay
I could accomplish this using this android:theme=@android:style/Theme.Translucent Just wondering, is it possible to use more than 1 theme for an activity? For example we could have an activity with these themes NoTitleBar and Translucent. Thank you, AJ On Apr 28, 11:19 am, Ajay

[android-developers] Re: Hide Activity

2010-04-28 Thread Mohan Krishna
hi ajay, define your own theme and add that theme to the activity in manifest.xml that you want to change. create a new xml file in res/values, and in the androidmanifest.xml file add your that theme to your activity. you can use this as an example style name=Theme parent=android:Theme.Dialog