編集:それは久しぶりです、そして私がこれを行うための最良の方法であると私が思うことを追加したいと思います、そしてXMLを通しても同様です!
したがって、最初に、カスタマイズするビューをオーバーライドする新しいクラスを作成します。(たとえば、カスタムタイプフェイスのボタンが必要ですか?Extend Button
)。例を作ってみましょう:
public class CustomButton extends Button {
private final static int ROBOTO = 0;
private final static int ROBOTO_CONDENSED = 1;
public CustomButton(Context context) {
super(context);
}
public CustomButton(Context context, AttributeSet attrs) {
super(context, attrs);
parseAttributes(context, attrs); //I'll explain this method later
}
public CustomButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
parseAttributes(context, attrs);
}
}
ここで、XMLドキュメントがない場合は、の下res/values/attrs.xml
にXMLドキュメントを追加し、以下を追加します。
<resources>
<!-- Define the values for the attribute -->
<attr name="typeface" format="enum">
<enum name="roboto" value="0"/>
<enum name="robotoCondensed" value="1"/>
</attr>
<!-- Tell Android that the class "CustomButton" can be styled,
and which attributes it supports -->
<declare-styleable name="CustomButton">
<attr name="typeface"/>
</declare-styleable>
</resources>
さて、それで邪魔にならないように、parseAttributes()
前のメソッドに戻りましょう。
private void parseAttributes(Context context, AttributeSet attrs) {
TypedArray values = context.obtainStyledAttributes(attrs, R.styleable.CustomButton);
//The value 0 is a default, but shouldn't ever be used since the attr is an enum
int typeface = values.getInt(R.styleable.CustomButton_typeface, 0);
switch(typeface) {
case ROBOTO: default:
//You can instantiate your typeface anywhere, I would suggest as a
//singleton somewhere to avoid unnecessary copies
setTypeface(roboto);
break;
case ROBOTO_CONDENSED:
setTypeface(robotoCondensed);
break;
}
values.recycle();
}
これで準備は完了です。ほぼすべての属性を追加できます(typefaceStyleに別の属性を追加できます-太字、斜体など)。次に、その使用方法を見てみましょう。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com.yourpackage.name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.yourpackage.name.CustomButton
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!"
custom:typeface="roboto" />
</LinearLayout>
xmlns:custom
ラインは本当に何もすることができますが、規則は上に示しているものです。重要なのは、それが一意であることです。そのため、パッケージ名が使用されます。これcustom:
で、属性のandroid:
プレフィックスとAndroid属性のプレフィックスを使用するだけです。
最後に、これをスタイル(res/values/styles.xml
)で使用する場合は、行を追加しないでくださいxmlns:custom
。接頭辞なしで属性の名前を参照するだけです:
<style name="MyStyle>
<item name="typeface">roboto</item>
</style>
(PREVIOUS ANSWER)
Androidでカスタム書体を使用する
これは役立つはずです。基本的に、これをXMLで行う方法はありません。私が知る限り、コードで簡単に行う方法はありません。いつでも書体を作成して、それぞれに対してsetTypeface()を実行するsetLayoutFont()メソッドを常に用意できます。レイアウトに新しい項目を追加するたびに更新する必要があります。以下のようなもの:
public void setLayoutFont() {
Typeface tf = Typeface.createFromAsset(
getBaseContext().getAssets(), "fonts/BPreplay.otf");
TextView tv1 = (TextView)findViewById(R.id.tv1);
tv1.setTypeface(tf);
TextView tv2 = (TextView)findViewById(R.id.tv2);
tv2.setTypeface(tf);
TextView tv3 = (TextView)findViewById(R.id.tv3);
tv3.setTypeface(tf);
}
編集:だから私はちょうどこのようなものを自分で実装することに乗り出しました、そして私がそれをやった方法は次のような関数を作ることでした:
public static void setLayoutFont(Typeface tf, TextView...params) {
for (TextView tv : params) {
tv.setTypeface(tf);
}
}
次に、onCreate()からこのメソッドを使用して、更新するすべてのTextViewを渡します。
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/BPreplay.otf");
//find views by id...
setLayoutFont(tf, tv1, tv2, tv3, tv4, tv5);
編集9/5/12:
したがって、これはまだ見解と投票を得ているので、はるかに優れた完全なメソッドを追加したいと思います。
Typeface mFont = Typeface.createFromAsset(getAssets(), "fonts/BPreplay.otf");
ViewGroup root = (ViewGroup)findViewById(R.id.myrootlayout);
setFont(root, mFont);
/*
* Sets the font on all TextViews in the ViewGroup. Searches
* recursively for all inner ViewGroups as well. Just add a
* check for any other views you want to set as well (EditText,
* etc.)
*/
public void setFont(ViewGroup group, Typeface font) {
int count = group.getChildCount();
View v;
for(int i = 0; i < count; i++) {
v = group.getChildAt(i);
if(v instanceof TextView || v instanceof Button /*etc.*/)
((TextView)v).setTypeface(font);
else if(v instanceof ViewGroup)
setFont((ViewGroup)v, font);
}
}
あなたはそれをあなたのレイアウトのルートを渡すと、それは再帰的にチェックしますTextView
か、Button
そのレイアウト内のビュー(あるいはあなたがそのif文に追加する他のもの)、そしてあなたはIDによってそれらを指定せずにフォントを設定します。もちろん、これはすべてのビューにフォントを設定することを想定しています。