多くのカスタム ボタンを含む Android アプリケーションを開発しています。それぞれに対して .xml ファイルを作成する必要がありますか? または、それらすべてを 1 つの .xml ファイルに入れる方法はありますか?
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" android:drawable="@drawable/father2" ></item>
<item android:drawable="@drawable/father" ></item>
このコードを 1 つの xml ファイル内の複数のカスタム ボタンに使用できますか?
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false" >
<item android:drawable="@drawable/brother1" android:duration="200"/>
<item android:drawable="@drawable/brother2" android:duration="200"/>
<item android:drawable="@drawable/brother3" android:duration="200"/>
<item android:drawable="@drawable/brother4" android:duration="200"/>
<item android:drawable="@drawable/brother5" android:duration="200"/>
また、アニメーション リストもあります。1 つの xml ファイルで複数のアニメーション リストを使用できますか?