更改editText提示的字体

问题描述 投票:22回答:10

是否可以更改EditText字段中显示的提示的字体?我想在xml本身设置字体。

android android-edittext
10个回答
14
投票

这是一个错误的答案。我尝试删除但除了主持人我不能。请忽略答案或随意更新答案。这个答案有误导性。对不起:)。

editText.setTypeface(Typeface.SERIF);

你可以改变EditText的字体就像TextView。但你不能改变hint的字体。


-3
投票

使用此代码:

edittext.setAccentTypeface(typeface);

22
投票

您可以使用SpannableString和Custom TypefaceSpan更改它。

首先,创建一个Custom TypefaceSpan类:

public class CustomTypefaceSpan extends TypefaceSpan {
    private final Typeface mNewType;

    public CustomTypefaceSpan(Typeface type) {
        super("");
        mNewType = type;
    }

    public CustomTypefaceSpan(String family, Typeface type) {
        super(family);
        mNewType = type;
    }

    @Override
    public void updateDrawState(TextPaint ds) {
        applyCustomTypeFace(ds, mNewType);
    }

    @Override
    public void updateMeasureState(TextPaint paint) {
        applyCustomTypeFace(paint, mNewType);
    }

    private static void applyCustomTypeFace(Paint paint, Typeface tf) {
        int oldStyle;
        Typeface old = paint.getTypeface();
        if (old == null) {
            oldStyle = 0;
        } else {
            oldStyle = old.getStyle();
        }

        int fake = oldStyle & ~tf.getStyle();
        if ((fake & Typeface.BOLD) != 0) {
            paint.setFakeBoldText(true);
        }

        if ((fake & Typeface.ITALIC) != 0) {
            paint.setTextSkewX(-0.25f);
        }

        paint.setTypeface(tf);
    }
}

然后将TypefaceSpan设置为SpannableString:

TypefaceSpan typefaceSpan = new CustomTypefaceSpan(typeface);
SpannableString spannableString = new SpannableString(hintText);

spannableString.setSpan(typefaceSpan, 0, spannableString.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);

最后只需设置EditText的提示:

mEditText.setHint(spannableString);

5
投票

我没有找到任何改变XML中的提示字体的有用方法。但是你可以这样做:

mEt.addTextChangedListener(new TextWatcher() {
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {

    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
        if(s.length()== 0) {
            //mEt.setTypeFace(normalFont);
        }else{
           // mEt.setTypeFace(hintFont);
        }
    }

    @Override
    public void afterTextChanged(Editable s) {
    }
});

4
投票

有一种非常简单的方法可以做到这一点。我只是在我的应用程序中做了它并且它工作。 Key也与EditText一起设置TextInputLayout的Facetype。

mEmailView.setTypeface(Typeface.createFromAsset(getAssets(), getString(R.string.app_font)));
((TextInputLayout) findViewById(R.id.tilEmail)).setTypeface(Typeface.createFromAsset(getAssets(), getString(R.string.app_font)));

2
投票

我可以使用此library更改提示字体。

编译库之后,必须按照以下命令创建一个应用程序类和类定义:

CalligraphyConfig.initDefault(new CalligraphyConfig.Builder()
                  .setDefaultFontPath("font.ttf")
                  .setFontAttrId(R.attr.fontPath)
                  .build()
          );

在每个活动之后,您需要使用以下命令覆盖它:

@Override
      protected void attachBaseContext(Context newBase) {
          super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
      }

2
投票

@ francisco_ssb的回答是正确的。但是,我将提供一种替代解决方案,它不仅可以更改提示字体,还可以更改其大小和样式。我希望这个解决方案会有所帮助。

1)创建自定义Hint对象:

import android.graphics.Typeface;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.style.MetricAffectingSpan;

public class CustomHint extends SpannableString
{
    public CustomHint(final CharSequence source, final int style)
    {
        this(null, source, style, null);
    }

    public CustomHint(final CharSequence source, final Float size)
    {
        this(null, source, size);
    }

    public CustomHint(final CharSequence source, final int style, final Float size)
    {
        this(null, source, style, size);
    }

    public CustomHint(final Typeface typeface, final CharSequence source, final int style)
    {
        this(typeface, source, style, null);
    }

    public CustomHint(final Typeface typeface, final CharSequence source, final Float size)
    {
        this(typeface, source, null, size);
    }

    public CustomHint(final Typeface typeface, final CharSequence source, final Integer style, final Float size)
    {
        super(source);

        MetricAffectingSpan typefaceSpan = new CustomMetricAffectingSpan(typeface, style, size);
        setSpan(typefaceSpan, 0, source.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
    }
}

2)创建自定义MetricAffectingSpan对象:

import android.graphics.Typeface;
import android.text.TextPaint;
import android.text.style.MetricAffectingSpan;

public class CustomMetricAffectingSpan extends MetricAffectingSpan
{
    private final Typeface _typeface;
    private final Float    _newSize;
    private final Integer  _newStyle;

    public CustomMetricAffectingSpan(Float size)
    {
        this(null, null, size);
    }

    public CustomMetricAffectingSpan(Float size, Integer style)
    {
        this(null, style, size);
    }

    public CustomMetricAffectingSpan(Typeface type, Integer style, Float size)
    {
        this._typeface = type;
        this._newStyle = style;
        this._newSize = size;
    }

    @Override
    public void updateDrawState(TextPaint ds)
    {
        applyNewSize(ds);
    }

    @Override
    public void updateMeasureState(TextPaint paint)
    {
        applyNewSize(paint);
    }

    private void applyNewSize(TextPaint paint)
    {
        if (this._newStyle != null)
            paint.setTypeface(Typeface.create(this._typeface, this._newStyle));
        else
            paint.setTypeface(this._typeface);

        if (this._newSize != null)
            paint.setTextSize(this._newSize);
    }
}

3)使用:

Typeface newTypeface = Typeface.createFromAsset(getAssets(), "AguafinaScript-Regular.ttf");
CustomHint customHint = new CustomHint(newTypeface, "Enter some text", Typeface.BOLD_ITALIC, 60f);
        //        CustomHint customHint = new CustomHint(newTypeface, "Enter some text", Typeface.BOLD_ITALIC);
        //        CustomHint customHint = new CustomHint(newTypeface, "Enter some text", 60f);
        //        CustomHint customHint = new CustomHint("Enter some text", Typeface.BOLD_ITALIC, 60f);
        //        CustomHint customHint = new CustomHint("Enter some text", Typeface.BOLD_ITALIC);
        //        CustomHint customHint = new CustomHint("Enter some text", 60f);

customEditText.setHint(customHint);

1
投票

它不可能在XML中 -

文本和提示只能在XML中使用相同的字体。


0
投票

随着Android 8.0(API级别26)的出现,出现了一项新功能,可以在EditMxt中显示的提示中更改xml中的字体。基于Fonts in XML的指南。

脚步:

1)创建一个新的资源目录:右键单击res文件夹,然后转到New - > Android resource directory。

2)将资源目录的名称设置为字体。

3)在“资源类型”列表中,选择“字体”,然后单击“确定”。

4)在字体文件夹中添加自定义字体(例如my_font.ttf)。

5)在布局XML中,将fontFamily属性设置为字体文件:

<EditText
    android:id="@+id/edit_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fontFamily="@font/my_font"/>

...或者如果您想以编程方式执行此操作:

val typeface = resources.getFont(R.font.my_font)
edit_text.typeface = typeface

要在运行Android 4.1(API级别16)及更高版本的设备上使用字体XML功能,请使用支持库26:

注意:通过支持库在XML布局中声明字体系列时,请使用app命名空间来确保加载字体。

1)在font目录中创建custom_font.xml

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:app="http://schemas.android.com/apk/res-auto">
    <font app:fontStyle="normal" app:fontWeight="400" app:font="@font/my_font"/>
</font-family>

2)设置fontFamily属性:

 <EditText
    android:id="@+id/edit_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fontFamily="@font/custom_font"/>

...或者如果您想以编程方式执行此操作:

val typeface = ResourcesCompat.getFont(context, R.font.custom_font)
edit_text.typeface = typeface

0
投票

采用文本输入布局并在其中放置文本输入编辑文本的方法

 <com.google.android.material.textfield.TextInputLayout
    android:id="@+id/text_input_layout_Til">

   <com.google.android.material.textfield.TextInputEditText
      android:id="@+id/editText"/>

 </com.google.android.material.textfield.TextInputLayout>

在片段/活动上,将提示所需的字体设置到TextInputLayout(text_input_layout_Til)然后在编辑文本(editText)上设置字体/如果这样做,用户将输入的文本和提示将具有不同的字体

© www.soinside.com 2019 - 2024. All rights reserved.