首页 > 代码库 > Android开发学习笔记-自定义TextView属性模版
Android开发学习笔记-自定义TextView属性模版
如果项目中有很多个控件使用的是同一种样式,则为了方便,可以将样式设置到系统中去,这样使用的时候会方便很多。
下面是自定义样式模版的方法。
1、在style.xml文件中添加自己要设置的样式内容
<resources> <!-- Base application theme, dependent on API level. This theme is replaced by AppBaseTheme from res/values-vXX/styles.xml on newer devices. --> <style name="AppBaseTheme" parent="Theme.AppCompat.Light"> <!-- Theme customizations available in newer API levels can go in res/values-vXX/styles.xml, while customizations related to backward-compatibility can go here. --> </style> <!-- Application theme. --> <style name="AppTheme" parent="AppBaseTheme"> <item name="android:windowNoTitle">true</item> <!-- All customizations that are NOT specific to a particular API-level can go here. --> </style> <style name="text_content"> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">55dp</item> <item name="android:layout_marginLeft">5dp</item> <item name="android:layout_marginTop">5dp</item> <!-- 自定义TextView样式 --> </style></resources>
2、在前端进行引用
<TextView android:id="@+id/baom1" style="@style/text_content" android:gravity="center_vertical" android:drawableLeft="@android:drawable/star_big_on" android:text="baojing" />
3、说明:
在xml中,name为引用的名称,item为属性名称以及对应的值。
Android开发学习笔记-自定义TextView属性模版
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。