Re: 回复: [android-developers] Re: Probl em with setTheme() method

2009-06-12 Thread Benny
0 true works for me ... greet On Apr 18, 4:24 pm, agirardello wrote: > I have the very same problem! > > Any suggestion to solve it?! > > Andrea > > On Mar 19, 9:39 am,

Re: 回复: [android-developers] Re: Probl em with setTheme() method

2009-06-10 Thread m...@themarkpatel.com
This is definitely still an issue in Cupcake. Thought setting the theme via xml is typically an acceptable approach, there are situations where that can be cumbersome (for example, an Activity class that gets sub-classed in several applications). Besides, it's just bad form to have an API that d

Re: 回复: [android-developers] Re: Probl em with setTheme() method

2009-04-20 Thread agirardello
I have the very same problem! Any suggestion to solve it?! Andrea On Mar 19, 9:39 am, Marcus wrote: > That's my code: > > protected void onCreate(Bundle savedInstanceState) { >                 super.onCreate(savedInstanceState); > >                 setTheme(android.R.style.Theme_Dialog); >

Re: 回复: [android-developers] Re: Probl em with setTheme() method

2009-03-19 Thread Marcus
That's my code: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(android.R.style.Theme_Dialog); setContentView(R.layout.whatsnew); } And it doesn't work! --~--~-~--~~