[android-developers] Re: MultiScreen Support in Android?

2010-03-08 Thread String
What do you have in the support-screens element of your manifest? It's not enough to simply have the tag there; its content will affect how your activities render. String On Mar 8, 10:30 am, javame_android wrote: > Hi, > > Yes, obviously I have read that. > > The problem is currently being solve

[android-developers] Re: MultiScreen Support in Android?

2010-03-08 Thread javame_android
Hi, Yes, obviously I have read that. The problem is currently being solved by using different layout for different screen. I have created layout-hdpi folder under res and specified the layout file over there for high resolution screen. But I still think there can be a better solution for this si

[android-developers] Re: MultiScreen Support in Android?

2010-03-08 Thread Yahel
Hi, Sorry I don't know how you can solve your problem as I've never ran into it. But just to point to the obvious and make sure you read : http://developer.android.com/intl/de/guide/practices/screens_support.html Good luck. Yahel -- You received this message because you are subscribed to the

[android-developers] Re: MultiScreen Support in Android?

2010-03-08 Thread javame_android
Hi, I am trying to use Resource Qualifier for layout as layout-large. But when the application is starting in the emulator its reading the same file from default layout folder. The res folder structure is as below : res/ layout/login.xml layout-large/login.xml What I want is when there i

[android-developers] Re: MultiScreen Support in Android?

2010-03-07 Thread javame_android
Hi, By using dip it should get displayed properly on all the screens. But its not happening, so I think there may be some problem or may be I am doing something wrong. It would be nice if someone can point out that. Do we need to create a separate layout file for each screen type? This will incre