ボタンのテキストに表示されるフォントを変更したいのですが、画面上のテキスト、textviewでこれを行うことができましたが、情報が見つからないか、ボタンにこれを適用するのに役立ちません。
私は初心者なので、そうするためのコードを提供していただければ幸いです。これは私がテキストビューに使用しているものですが、ボタンのフォントを変更するにはどうすればよいですか?
TextView txt = (TextView) findViewById(R.id.custom_font);
Typeface font = Typeface.createFromAsset(getAssets(), "1543Humane_jenson_bold.TTF");
txt.setTypeface(font);
ありがとうルーシーx
ボタン IS-A TextViewなので、TextViewと同じように実行します。
Button txt = (Button) findViewById(R.id.custom_font);
Typeface font = Typeface.createFromAsset(getAssets(), "1543Humane_jenson_bold.TTF");
txt.setTypeface(font);
私はボタンにこのように使用し、それは機能しました(TextViewの場合と同じです)..
Button enter=(Button) findViewById(R.id.enter);
Typeface type=Typeface.createFromAsset(getAssets(), "arial.ttf");
enter.setTypeface(type);
それが役に立てば幸い...
同じフォントを複数のボタンに追加する場合は、最後まで行って、スタイルおよびサブクラスボタンとして実装することをお勧めします。
public class ButtonPlus extends Button {
public ButtonPlus(Context context) {
super(context);
}
public ButtonPlus(Context context, AttributeSet attrs) {
super(context, attrs);
CustomFontHelper.setCustomFont(this, context, attrs);
}
public ButtonPlus(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
CustomFontHelper.setCustomFont(this, context, attrs);
}
}
これは、com.my.package:font属性に基づいてTextViewにフォントを設定するためのヘルパークラスです(ButtonはTextViewのサブクラスであることを忘れないでください)。
public class CustomFontHelper {
/**
* Sets a font on a textview based on the custom com.my.package:font attribute
* If the custom font attribute isn't found in the attributes nothing happens
* @param textview
* @param context
* @param attrs
*/
public static void setCustomFont(TextView textview, Context context, AttributeSet attrs) {
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CustomFont);
String font = a.getString(R.styleable.CustomFont_font);
setCustomFont(textview, font, context);
a.recycle();
}
/**
* Sets a font on a textview
* @param textview
* @param font
* @param context
*/
public static void setCustomFont(TextView textview, String font, Context context) {
if(font == null) {
return;
}
Typeface tf = FontCache.get(font, context);
if(tf != null) {
textview.setTypeface(tf);
}
}
}
古いデバイスのメモリ使用量を削減するためのFontCacheは次のとおりです。
public class FontCache {
private static Hashtable<String, Typeface> fontCache = new Hashtable<String, Typeface>();
public static Typeface get(String name, Context context) {
Typeface tf = fontCache.get(name);
if(tf == null) {
try {
tf = Typeface.createFromAsset(context.getAssets(), name);
}
catch (Exception e) {
return null;
}
fontCache.put(name, tf);
}
return tf;
}
}
res/values/attrs.xmlで、カスタムのスタイル設定可能な属性を定義します
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomFont">
<attr name="font" format="string"/>
</declare-styleable>
</resources>
そして最後に、レイアウトでの使用例:
<com.my.package.buttons.ButtonPlus
style="@style/button"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="@string/button_sometext"/>
そしてres/values /style.xmlで
<style name="button" parent="@Android:style/Widget.Button">
<item name="com.my.package:font">fonts/copperplate_gothic_light.TTF</item>
</style>
これは大変な作業のように思えるかもしれませんが、フォントを変更したいボタンとテキストフィールドがいくつかあると、私に感謝します。
上記のソリューションの他の代替手段:
mYourButton = (Button) findViewById(R.id.Button_id);
mYourEditText = (EditText) findViewById(R.id.editText_id);
Typeface font = ResourcesCompat.getFont(getContext(), R.font.font_name.TTF);
mYourButton.setTypeface(font);
mYourEditText.setTypeface(font);
ここに示すようにカスタムボタンを作成する:
public class Button_Roboto_Regular extends Button {
public Button_Roboto_Regular(Context context) {
super(context);
mTextFont(context);
}
public Button_Roboto_Regular(Context context, AttributeSet attrs) {
super(context, attrs);
mTextFont(context);
}
public Button_Roboto_Regular(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
mTextFont(context);
}
private void mTextFont(Context context) {
Typeface face = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Regular_0.ttf");
this.setTypeface(face);
}
}