1. 程式人生 > >Android開發— 反射更換Android全域性字型

Android開發— 反射更換Android全域性字型

Step1—新建繼承Application類的SetAppTypeface

因為是全域性更換字型,所以需要使用Application來完成全域性的作用:

以下是SetAppTypeface.java全部程式碼

package pri.weiqiang.frontinstead;
import java.lang.reflect.Field;
import android.app.Application;
import android.graphics.Typeface;
/**
 * @author 54wall
 * @date 建立時間:2016-7-28 下午2:20:59
 * @version 1.0
 */
public class SetAppTypeface extends Application{ public static Typeface typeFace; @Override public void onCreate() { super.onCreate(); setTypeface(); } public void setTypeface(){ //華文彩雲,載入外部字型assets/front/huawen_caiyun.ttf typeFace = Typeface.createFromAsset(getAssets(), "fonts/huawen_caiyun.ttf"
); try { //與values/styles.xml中的<item name="android:typeface">sans</item>對應 // Field field = Typeface.class.getDeclaredField("SERIF"); // field.setAccessible(true); // field.set(null, typeFace); // Field field_1 = Typeface.class.getDeclaredField("DEFAULT");
// field_1.setAccessible(true); // field_1.set(null, typeFace); //與monospace對應 // Field field_2 = Typeface.class.getDeclaredField("MONOSPACE"); // field_2.setAccessible(true); // field_2.set(null, typeFace); //與values/styles.xml中的<item name="android:typeface">sans</item>對應 Field field_3 = Typeface.class.getDeclaredField("SANS_SERIF"); field_3.setAccessible(true); field_3.set(null, typeFace); } catch (NoSuchFieldException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } } }

Field這個類就是反射了,他可以獲取相應欄位,然後就可以通過反射設定不能設定的屬性了(具體其實我也不是很懂)。

為什麼是SERIF-MONOSPACE-SANS_SERIF這幾個字串

直接進入Typeface這個類,你會發現:

    static {
        init();
        // Set up defaults and typefaces exposed in public API
        DEFAULT         = create((String) null, 0);
        DEFAULT_BOLD    = create((String) null, Typeface.BOLD);
        SANS_SERIF      = create("sans-serif", 0);
        SERIF           = create("serif", 0);
        MONOSPACE       = create("monospace", 0);

        sDefaults = new Typeface[] {
            DEFAULT,
            DEFAULT_BOLD,
            create((String) null, Typeface.ITALIC),
            create((String) null, Typeface.BOLD_ITALIC),
        };

    }

create就是在載入字型了。而SetAppTypeface這個類繼承自Application,Android App啟動後會首先載入這個類,實現反射替換App中的全部使用SANS_SERIF的字型,這樣配合values/styles.xml進行全域性預設字型樣式選擇就可以進行全域性字型的更換了。

Step2—修改AndroidManifest.xml

進入AndroidManifest.xml找到application這個tag,直接在其內部增加android:name=".SetAppTypeface",完成後如下:

<application
        android:allowBackup="true"
        **android:name=".SetAppTypeface"**
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

Step3—修改values/styles.xml

在styles.xml檔案中找到<style name="AppTheme" parent="AppBaseTheme">並修改成下邊的

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
        <item name="android:typeface">sans</item>
    </style>

這裡android:typeface可以設定的僅僅有normal、sans、serif、monospace可以設定,因為我在SetAppTypeface類中設定的是Typeface.class.getDeclaredField("SANS_SERIF");
所以我這裡便設定成sans,如果getDeclaredField()設定的是其他的型別,則要選擇同類型的其他諸如serif、monospace等等

DemoTest—上邊三步完成後就可以啟動App看看效果了:

我的MainActivity如下:

package pri.weiqiang.frontinstead;

import android.app.Activity;
import android.graphics.Typeface;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
/**
 * @author 54wall
 * @date 建立時間:2016-7-28 下午2:20:59
 * @version 1.0
 */
public class MainActivity extends Activity {
    public TextView textView01;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView01=(TextView)super.findViewById(R.id.TextView01);
        textView01.setTypeface(null, Typeface.NORMAL);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

簡單說一下,顯示內容其實在佈局檔案activity_main中,這裡設定其中一個TextView字型風格為Typeface.NORMAL,這樣的話,因為他不在預設使用styles.xml中的sans字型,所以全域性對他來說便沒有作用了。
效果如下:

快速使用反射更換Android全域性字型.jpg