如何查找一个Android控件具有哪些XML属性
1个回答
展开全部
通过设置公共style的方式对同一个属性进行统一设置
1、res/values文件夹下新建一个xml文件
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--定义一个叫et1的style-->
<style name="et1" parent="@android:style/Widget.EditText">
<!--设置控件的背景色-->
<item name="android:background">#1A4EA4</item>
</style>
</resources>
2、组件中使用
1
2
<EditText android:layout_width="fill_parent" android:id="@+id/et2"
android:text="自定义样式一" android:layout_height="wrap_content" style="@style/et1"></EditText> <!--设置style为et1,需要设置同样属性的其他组件可以都设置成同一个style-->
1、res/values文件夹下新建一个xml文件
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--定义一个叫et1的style-->
<style name="et1" parent="@android:style/Widget.EditText">
<!--设置控件的背景色-->
<item name="android:background">#1A4EA4</item>
</style>
</resources>
2、组件中使用
1
2
<EditText android:layout_width="fill_parent" android:id="@+id/et2"
android:text="自定义样式一" android:layout_height="wrap_content" style="@style/et1"></EditText> <!--设置style为et1,需要设置同样属性的其他组件可以都设置成同一个style-->
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询