TextViewスタイルをその状態に基づいて変更しようとしています。 私のstyles.xmlが含まれていますTextView state_pressed/state_focused/state_selected style change
<style name="text_normal_ops">
<item name="android:gravity">left</item>
<item name="android:textColor">@color/text_usual_color</item>
<item name="android:textStyle">bold</item>
</style>
<style name="text_normal_ops_pressed">
<item name="android:gravity">left</item>
<item name="android:textColor">@color/text_pressed</item>
<item name="android:textStyle">bold</item>
</style>
マイセレクタ(text_ops.xml
)のように定義されます。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" style="@style/text_normal_ops_pressed" />
<item android:state_focused="true" style="@style/text_normal_ops_pressed" />
<item android:state_selected="true" style="@style/text_normal_ops_pressed" />
<item style="@style/text_normal_ops"/>
</selector>
しかし、私は私のTextViewにこれを適用する場合(style="@drawable/text_ops"
)それは動作しません。 ヒント?
ありがとう
のためのリンクの下に確認してください、あなたは> RES-でウルのstyles.xmlを保持しています値のフォルダ??? – Hanry
はい私はハリーを持っています。 – trenpixster