如何使用Holo.Light主题,并在蜂窝前设备上回归'Light'?

时间:2012-03-13 09:46:34

标签: android android-4.0-ice-cream-sandwich android-theme android-3.0-honeycomb

我想在支持它的设备上使用Holo.Light主题,并回退到其他设备上的常规Light主题。

目前,引用Holo.Light在3.0+上工作正常,但较旧的API只是恢复为默认的“黑暗”主题。我可以通过样式继承来实现我想要的吗?

1 个答案:

答案 0 :(得分:0)

你也可以简单地将背景设置为白色,然后通过并将所有其他小部件设置为黑色,如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    **android:background="#ffffff"
    android:orientation="vertical" >

<TextView
    android:id="@+id/tvText"
    android:text="@string/text"
    **android:textColor="#000000"
    android:textSize="12dp" />