多くのカスタムボタンを含むAndroidアプリケーションを開発しています。それぞれの.xmlファイルを作成する必要がありますか、またはすべてを1つの.xmlファイルに入れる方法がありますか?私のカスタムボタンをAndroidの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ファイルで複数のアニメーションリストを使用できますか?
あなたが達成しようとしているものの例は、より良い回答を得るのに役立ちます。 –