在layout中:
<TextView android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="A"
android:textSize="?normal_font_size"
/>
在attrs.xml中
<?xml version="1.0" encoding="utf-8"?> <resources> <attr name="normal_font_size" format="dimension" /> </resources>
在themes.xml中
<style name="MainTheme" parent="@android :style/Theme.Black.NoTitleBar"> <item name="normal_font_size">15px</item> </style>
问题:在代码中如何动态读取我在主题中定义的值?
这样读取即可~
final Resources.Theme theme = getTheme(); TypedArray a = theme.obtainStyledAttributes(R.styleable.MainTheme);
int size = a.getDimensionPixelSize(R.styleable.MainTheme_normal_font_size, 0);
a.recycle();
###### @迷途d书童 书童兄,求指教~。###### 只要用setTheme(R.style.MainTheme)就可以了
参考:http://www.cnblogs.com/playing/archive/2011/04/01/2002469.html ######
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。