android 读取 attr 资源

在layout中:

        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中



   

 

在themes.xml中

   

问题:在代码中如何动态读取我在主题中定义的值?

 

只要用setTheme(R.style.MainTheme)就可以了

你可能感兴趣的:(Android,基础)