0

I'm developing an app for android 2.1 and I'd like to create a special layout for tablets with Android 3.0 standard. Can the styling be automatically changed in layout editor, so that I can just drag and drop a 3.0-like button, etc. ? Otherwise, is there any other smart way to change the layout style for Android 3.0?

Andrzej Gis
  • 13,706
  • 14
  • 86
  • 130
  • 1
    Doesn't changing the theme in the layout editor suffice? It's one of the dropdown lists (or perhaps better said in Android terminology: `Spinner`) at the upper right corner in the editor - directly below the one for platform selection. It'll only affect the preview and does nothing to your actual (re)source files. – MH. May 22 '12 at 22:30

1 Answers1

0

Take a look of these post:

Program different layouts for different versions in android

Adapt layout to Android platform or API level

Otherwise, you may compile different APKs for different platform versions:

http://developer.android.com/guide/market/publishing/multiple-apks.html

Community
  • 1
  • 1
aldo.roman.nurena
  • 1,323
  • 12
  • 26