我想更改很多 textViews 的 textColor,并设置为红色。现在,这是我的 xml 代码,第一个 textView 更改为 red :
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="150dp"
android:orientation="vertical" >
<TextView
android:id="@+id/data1_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Latitude"
android:textColor="#FF0000"/>
<TextView
android:id="@+id/data1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Latitude_val" />
<TextView
android:id="@+id/data2_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Longitude" />
<TextView
android:id="@+id/data2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Longitude_val" />
<TextView
android:id="@+id/data3_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Altitude" />
<TextView
android:id="@+id/data3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Altitude_val" />
<TextView
android:id="@+id/data4_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Vitesse GPS" />
<TextView
android:id="@+id/data4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Vitesse GPS_val" />
</LinearLayout>
如您所见,textViews 在线性布局内,但遗憾的是,您不能只android:textColor
在布局参数中使用。
这里我只显示了4个textViews,但是还有很多,我不想给每个一个参数一个一个(想象一下,如果我想在那之后改变颜色......)
是否有某种标签来指示一堆 textViews 的样式?