Skip to content Skip to sidebar Skip to footer

How The Same Spinner Looks Different In Different Device

Hi I have created a spinner using the following code. I didn't set any background image. I am getting good look and feel in Motorolla Milestone but some rubbush look and feel in Sa

Solution 1:

The resources in Android can differ between Devices, Manufacturers, Service Providers, Android Versions, etc.

So the Galaxy Ace uses some different resources than Milestone.

If you want exactly the same visuals on all devices you have to create them yourself.

Solution 2:

The way that the widget looks, is influenced by the theme that is currently used on the device or within the application.

If you don't have a custom theme for your app, the widget will use the device theme and there will be noticeable differences.

http://developer.android.com/guide/topics/ui/themes.html

A similar post regarding themes:

Android changing colors with themes

Post a Comment for "How The Same Spinner Looks Different In Different Device"