android背景与style的设置

1、新建XML(values)文件:主题

resources xmlns:android="http://schemas.android.com/apk/res/android">


   
   
   
    
   

2、然后在注册表(AndroidManifest.xml)里直接引用

              android:theme="@style/Mytheme"/>

3、对于style的具体代码

字体设置为白色

(1)、依然是在values新建XML文件

   


     

   

         @style/MyActionBarTitleText  

     

  

      

        #fff  

      

  

   

4、然后在AndroidManifest.xml直接引用

activity android:name="Activty_menu"
            style:theme="@MyActionBar"/>


你可能感兴趣的:(android背景与style的设置)