我正在通过复制内置Theme.Light中的部分来编写新主题,而我不明白android:colorForeground的含义。
我能找到的唯一信息是“前景影像的默认颜色”here,但我仍然无法理解其含义。
有人可以赐教我吗?
我用于测试的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:colorForeground="#80ff8000" >
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="First EditText"
android:colorForeground="#ffffffff" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="First TextView"
android:colorForeground="#ff000000" />
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:colorForeground="#ffffffff" >
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Second EditText, inside a RelativeLayout"
android:colorForeground="#ff0000ff"
android:layout_alignParentTop="true"
android:layout_marginTop="10dip" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Second TextView, inside a RelativeLayout"
android:colorForeground="#ff00ff00"
android:layout_alignParentTop="true" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:0)
您可以看到&#34; android:colorForeground&#34;的使用示例在SwitchCompat样式中:
它的风格(主题):
<style name="MySwitch" parent="Theme.AppCompat.Light">
<!-- active thumb & track color (30% transparency) -->
<item name="colorControlActivated">@color/indigo</item>
<!-- inactive thumb color -->
<item name="colorSwitchThumbNormal">@color/pink</item>
<!-- inactive track color (30% transparency) -->
<item name="android:colorForeground">@color/grey</item>
</style>
并申请:
<android.support.v7.widget.SwitchCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:theme="@style/MySwitch"/>
正如你所看到的,&#34; android:colorForeground&#34;确定SwitchCompat的非活动轨道颜色。
&#34;是myswitch&#34;主题扩展了一些活动主题(&#34; Theme.AppCompat.Light&#34;)和&#34; android:colorForeground&#34;被覆盖以改变活动主题的一些默认值。
所以它是&#34; android:colorForeground&#34;的样本。使用。可能没有唯一的含义..