レイアウト:</ 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>
themes.xml:
<style name="MainTheme" parent="@android :style/Theme.Black.NoTitleBar">
<item name="normal_font_size">15px</item>
</style>
コードで定義されたテーマの値を動的に読み取る方法は?