我想在支持它的设备上使用Holo.Light
主题,并回退到其他设备上的常规Light
主题。
目前,引用Holo.Light
在3.0+上工作正常,但较旧的API只是恢复为默认的“黑暗”主题。我可以通过样式继承来实现我想要的吗?
答案 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" />