だから、もし私が持っているならshape
:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="10dp"/>
</shape>
そして、私はその形をselector
:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/someDrawable" android:state_focused="true" android:state_pressed="true"/>
<item android:drawable="@drawable/someOtherDrawable" android:state_focused="false" android:state_pressed="true"/>
<item android:drawable="@drawable/someOtherOTHERDrawable"/>
</selector>
セレクターで形状を使用し、その色を設定するにはどうすればよいですか? XMLでそれを行うことさえ可能ですか? <include />
次のようなタグを使用する必要がありますか。
<item >
<include layout="@drawable/myShape"
android:color="#987" />
</item>