Android: Theme Holo previous version

前端 未结 3 876
离开以前
离开以前 2020-12-24 04:11

I really like the 4.0 ICS Holo Light theme and would like to have it in my app to support <4.0 smartphones.

I found Android layoutlib.jar in platform folder but i

3条回答
  •  萌比男神i
    2020-12-24 04:32

    It would be better not to use the Holo theme on unsupported devices. You can do a simple trick to make your app run the Holo theme on 3.x and up, and one of the built in themes on 2.3 and below, like so:

    1. In your manifest, use this line for your activity's theme

      android:theme="@style/Theme.MyTheme"

    2. In your res/values folder put a styles.xml file, containing