タグ付けされた質問 「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 --> ここでの問題は、ドローアブルの場合と同じように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ますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.