如何对多个按钮统一设置属性?
我有差不多10个控件,但是我想把这十个都统一设置背景颜色。
如果是一个一个设置的话会很麻烦,不知道大家 是怎么弄这个问题的呢??。。。
你没有自定义过控件吗?
[解决办法]
你没有自定义过控件吗?
定义过啊,在布局文件
<Button
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/A01ID"
android:text="@string/A1Text"
/>
这种还不算吗?
不算,我说的是重写button这个类,统一设置背景色.类似于这个
<com.test.ButtonTest
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/A01ID"
android:text="@string/A1Text"
/>
如果只是单一的改变背景色,用2楼的方法就行了..
[解决办法]
那你从写android的Button类,重新设置背景就可以了。