我有一组由 ImageButton、ImageView 和 TextView 组成的视图。
代码如下所示:
<ImageButton
android:id="@+id/imagebutton_com"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/bean_bg"
/>
<ImageView
android:id="@+id/imageview_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/arrow_1"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
/>
<TextView
android:id="@+id/textview_wizard_main_button"
android:text="Soybeans"
android:layout_toRightOf="@id/imageview_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="17sp"
android:textStyle="bold"
android:textColor="@color/white"
android:layout_margin="10dp"
/>
一切都按预期工作,但我想在 Button 获得焦点时更改 TextView 的 textColor。
我尝试编写一个选择器 xml 文件来做同样的事情,但没有任何效果。
有什么建议吗?