欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

修改Android App样式风格的方法

程序员文章站 2023-11-18 12:25:04
android中可以自定义主题和风格。风格,也就是style,我们可以将一些统一的属性拿出来,比方说,长,宽,字体大小,字体颜色等等。可以在res/values目录下新建一...
android中可以自定义主题和风格。风格,也就是style,我们可以将一些统一的属性拿出来,比方说,长,宽,字体大小,字体颜色等等。可以在res/values目录下新建一个styles.xml的文件,在这个文件里面有resource根节点,在根节点里面添加item项,item项的名字就是属性的名字,item项的值就是属性的值,如下所示:
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <style name="mytext" parent="@android:style/textappearance">
     <item name="android:textcolor">#987456</item>
  <item name="android:textsize">24sp</item>
 </style>
</resources>

style中有一个父类属性parent, 这个属性是说明当前的这个style是继承自那个style的,当然这个style的属性值中都包含那个属性中的,你也可以修改继承到的属性的值,好了,style完成了,我们可以测试一下效果了,先写一个布局文件,比如说一个textview什么的,可以用到这个style的。这里我就写一个edittext吧。下面是布局文件:
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<linearlayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
<edittext
 android:id="@+id/myedittext"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 style="@style/mytext"
 android:text="测试一下下"/>
</linearlayout>

说完了style,下面就说说theme,theme跟style差不多,但是theme是应用在application或者activity里面的,而style是应用在某一个view里面的,还是有区别的,好了,废话不多说,还是看代码吧。下面的是style文件:
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <style name="mytext" parent="@android:style/textappearance">
  <item name="android:textcolor">#987456</item>
  <item name="android:textsize">24sp</item>
 </style>
 <style parent="@android:style/theme" name="customtheme">
  <item name="android:windownotitle">true</item>
  <item name="android:windowframe">@drawable/icon</item>
  <item name="android:windowbackground">?android:windowframe</item>
</style>
</resources>

style中有一个父类属性parent, 这个属性是说明当前的这个style是继承自那个style的,当然这个style的属性值中都包含那个属性中的,你也可以修改继承到的属性的值,好了,style完成了,我们可以测试一下效果了,先写一个布局文件,比如说一个textview什么的,可以用到这个style的。这里我就写一个edittext吧。下面是布局文件:
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<linearlayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
<edittext
 android:id="@+id/myedittext"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 style="@style/mytext"
 android:text="测试一下下"/>
</linearlayout>

说完了style,下面就说说theme,theme跟style差不多,但是theme是应用在application或者activity里面的,而style是应用在某一个view里面的,还是有区别的,好了,废话不多说,还是看代码吧。下面的是style文件:
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <style name="mytext" parent="@android:style/textappearance">
  <item name="android:textcolor">#987456</item>
  <item name="android:textsize">24sp</item>
 </style>
 <style parent="@android:style/theme" name="customtheme">
  <item name="android:windownotitle">true</item>
  <item name="android:windowframe">@drawable/icon</item>
  <item name="android:windowbackground">?android:windowframe</item>
</style>
</resources>

可以看到这里写了一个继承自系统默认的theme的主题,里面有3个属性,这里强调一下第三个属性的值的问题,这里打个问号,然后加前面的一个item的名字表示引用的是那个名字的值,也就是那个名字对应的图片。
然后我们在manifest.xml里面的application里面加一个theme的属性,这个属性对应的就是我们上面写的theme。
复制代码 代码如下:

<application android:icon="@drawable/icon" android:label="@string/app_name"
 android:theme="@style/customtheme">
<activity android:name=".teststyle"
 android:label="@string/app_name">
<intent-filter>
 <action android:name="android.intent.action.main" />
 <category android:name="android.intent.category.launcher" />
 </intent-filter>
</activity>

上面的代码没有标题栏,背景和fram都是我们设置的图片。当然也可以在代码中设置主题:
复制代码 代码如下:

package com.test.shang;
import android.app.activity;
import android.os.bundle;
public class teststyle extends activity {
 @override
 protected void oncreate (bundle savedinstancestate) {
  super.oncreate(savedinstancestate);
  settheme(r.style.customtheme);
  setcontentview(r.layout.test_style);
 }
}