布局:</p>
<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>
主题.xml:
<style name="MainTheme" parent="@android :style/Theme.Black.NoTitleBar">
<item name="normal_font_size">15px</item>
</style>
如何动态读取代码中定义的我的主题的值?