style
style文件是为了抽取一些控件的属性的共同点,通过style预设一些值
另外在项目中主要的作用也是为了属性的统一管理,方便后续的修改
使用方法:
在values中新建一个style.xml文件
其中的代码如下
<style name="TestTextView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:text">this is a test text View</item>
<item name="android:layout_margin">15dp</item>
</style>
在布局文件中的使用方法是
style="@style/TestTextView"
经过验证,style中不能添加style属性
不知道有没有办法继承,后面要用到的时候再找
标签:文件,style,content,wrap,Android,资源,属性 From: https://www.cnblogs.com/baidurenshen/p/17673380.html