AndroidでEditTextのフォントを変更する方法はありますか? すべての textView に設定したフォントと一致させたいです。
質問する
50392 次
8 に答える
41
editText.setTypeface(Typeface.SERIF);
TextView と同様です。
<TextView
...
android:typeface="serif"
... />
編集:上記はXMLです
于 2012-05-26T14:09:22.223 に答える
27
解決策 1:: 親ビューを引数として渡してこれらのメソッドを呼び出すだけです。
private void overrideFonts(final Context context, final View v) {
try {
if (v instanceof ViewGroup) {
ViewGroup vg = (ViewGroup) v;
for (int i = 0; i < vg.getChildCount(); i++) {
View child = vg.getChildAt(i);
overrideFonts(context, child);
}
} else if (v instanceof EditText) {
((TextView) v).setTypeface(Typeface.createFromAsset(context.getAssets(), "font.ttf"));
}
} catch (Exception e) {
}
}
解決策 2:: TextView クラスをカスタム フォントでサブクラス化し、textview の代わりに使用できます。
public class MyEditView extends EditText{
public MyEditView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public MyEditView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public MyEditView(Context context) {
super(context);
init();
}
private void init() {
if (!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font.ttf");
setTypeface(tf);
}
}
}
于 2012-05-26T14:10:16.400 に答える
10
assetsフォルダーにfontsフォルダーを作成し、.ttf フォント ファイルを配置してから、onCreate() 関数に次のように記述します。
EditText editText =(EditText)findViewById(R.id.insert_yors_edit_text_layout);
Typeface type = Typeface.createFromAsset(getAssets(),"fonts/yours_font.ttf");
editText.setTypeface(type);
于 2013-08-13T01:59:21.663 に答える
1
void setFont(Context context, ViewGroup vg)
{
final String FONT_NAME = "lato_bold.ttf";
for (int i = 0; i < vg.getChildCount(); i++)
{
View v = vg.getChildAt(i);
if (v instanceof ViewGroup)
setFont(context, (ViewGroup) v);
else if (v instanceof TextView)
{
((TextView) v).setTypeface(Typeface.createFromAsset(context.getAssets(), FONT_NAME ));
}
else if (v instanceof EditText)
{
((EditText) v).setTypeface(Typeface.createFromAsset(context.getAssets(), FONT_NAME ));
}
else if (v instanceof Button)
{
((Button) v).setTypeface(Typeface.createFromAsset(context.getAssets(), FONT_NAME ));
}
else if (v instanceof CheckBox)
{
((CheckBox) v).setTypeface(Typeface.createFromAsset(context.getAssets(), FONT_NAME ));
}
else if (v instanceof RadioButton)
{
((RadioButton) v).setTypeface(Typeface.createFromAsset(context.getAssets(), FONT_NAME ));
}
}
}
Activity または Fragment で、メイン レイアウトを取得します。
Inflater inflater = (Inflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
//For Activity
//Inflater inflater = (Inflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.main_fragment, container, false);
//For Activity
//View v = inflater.inflate(R.layout.signup_fragment, null, false);
if (v instanceof ViewGroup)
{
setFont(getActivity(), (ViewGroup) v);
//For Activity
//setFont(this, (ViewGroup) v);
}
于 2014-10-28T12:27:11.263 に答える