Questions tagged «android-selector»

5
Android自定义按钮;更改文字颜色
我制作了一个按钮,可以通过以下方式在不同状态下更改背景可绘制: <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/btn_location_pressed" /> <!-- pressed --> <item android:state_focused="true" android:drawable="@drawable/btn_location_pressed"/> <!-- focused --> <item android:drawable="@drawable/btn_location"/> <!-- default --> 这里的问题是,我也尝试像对drawable一样更改textColor,但是我不能。我已经尝试过android:textColor和android:color,但是第一个不起作用,而秒改变了我的背景。 下一个代码是我的布局的一部分。关于文本颜色,它仅适用于正常状态的文本颜色,因此在按下时不会将其更改为白色 <Button android:id="@+id/location_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dp" android:background="@drawable/location" android:textSize="15sp" android:textColor="@color/location_color" android:textColorHighlight="#FFFFFF" /> 有人知道了吗?

9
Android选择器和文字颜色
我想要一个简单TextView的运行方式simple_list_item_1在ListView做。这是XML: <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center" android:focusable="true" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" android:background="@android:drawable/list_selector_background" /> 一切正常,除了在预期状态下不会改变的文字颜色。我如何将其更改为textAppearanceLargeInverse?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.