本文介绍了更改浮动标签 EditText 和 TextInputLayout 的字体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人试图改变浮动标签的字体?我改了EditText的来源但是浮动标签的字体没有变,非常感谢帮助我的人
代码:
.这将设置展开和浮动提示的字体.
这里是 功能请求b.android.com.
错误视图字体未设置,但现在是 已在 v25.1.0
中修复.
Someone tried to change the font of the floating label? I changed the source of EditText but the font of the floating label did not change, I am very grateful to those who help me
Code:
<android.support.design.widget.TextInputLayout
android:id="@+id/tilTextoDescricao"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/tilValorUnidade"
android:layout_marginTop="10dp">
<EditText
android:id="@+id/etTextoDescricao"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:hint="Descrição"
android:textSize="15dp"
android:inputType="text" />
</android.support.design.widget.TextInputLayout>
-----------------
etTextoDescricao= (EditText) findViewById(R.id.etTextoDescricao);
etTextoDescricao.setTypeface(CustomTypeface.getTypefaceMediumDefault(this));
解决方案 As of Design Library v23
, you can use TextInputLayout#setTypeface()
.
This will set the typeface on both the expanded and floating hint.
Here is the feature request where it was discussed on b.android.com.
EDIT: The error view typeface was not being set, but is now fixed in v25.1.0
.
这篇关于更改浮动标签 EditText 和 TextInputLayout 的字体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!