我正在开发一个包含许多自定义按钮的 android 应用程序。我是否需要为每个文件制作一个 .xml 文件,或者有一种方法可以将它们全部放在一个 .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>
我可以将此代码用于一个 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"/>
我还有一个动画列表;我可以在一个 xml 文件中使用多个动画列表吗?