8

セレクターを使用していますが、テキストサイズの設定方法がわかりません。多分私は何か間違ったことをしている-助けて

arrow.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/button_pressed" android:state_pressed="true" android:color="@color/green"></item>

</selector>
4

2 に答える 2

-2

独自のものを作成style.xmlし、テキスト スタイルを定義します。次に、セレクターでスタイルを設定します。

style.xml

<style name="myStyle">  
    <item name="android:textSize">9px</item>
    <item name="android:textColor">#fff</item>
    <item name="android:textStyle">bold</item>
</style>

そしてあなたのセレクターで

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
          style="@style/myStyle" /> 
</selector>
于 2015-03-18T07:31:56.663 に答える