有没有办法来改变在Android上的EditText字体? 我希望它匹配字体的我为所有的textViews。
Answer 1:
editText.setTypeface(Typeface.SERIF);
像作为TextView的。
<TextView
...
android:typeface="serif"
... />
编辑:以上是XML
Answer 2:
解决方法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);
}
}
}
Answer 3:
创建资产文件夹中的字体文件夹,并把你的.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);
Answer 4:
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 ));
}
}
}
在您的活动或片段,让主布局
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);
}
Answer 5:
您可以在最后一个版本的Android工作室3。然后拷贝创建res目录下的字体文件夹和过去,找你字体的字体文件夹。 现在,只需添加fontFamily
,以标签的EditText XML。
如下图所示。
<EditText
android:id="@+id/subject"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/headerShare"
android:layout_marginBottom="5dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/edittext_bg"
android:fontFamily="@font/ritaric"
android:gravity="start"
android:hint="Subject"
android:inputType="text"
android:maxHeight="50dp"
android:padding="16dp"
android:textColor="@color/black"
android:textColorHint="@color/black"
android:textSize="@dimen/colors_textview_size" />
我们使用android:fontFamily="@font/ritaric"
的适用上的EditText字体。
Answer 6:
第一种方法
在Java类使用此代码
EditText et_brand=(EditText)findViewById(R.id.et_brand);
et_brand.setTypeface(Typeface.createFromAsset(getAssets(),"Aspergit Bold.ttf"));
//Aspergit Bold.ttf is Font style name of text
第二种方法
创建一个新的Java类,它为u想要
public class CustomTextView extends TextView { public CustomTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(); } public CustomTextView(Context context, AttributeSet attrs) { super(context, attrs); init(); } public CustomTextView(Context context) { super(context); init(); } private void init() { Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "Aspergit Bold.ttf"); setTypeface(tf); } }
使用它在XML文件中
<YourPackageNAme.CustomEditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@null"/>
Answer 7:
在你的java文件 ,你想,你可以添加像普通,斜体,粗体,BOLD_ITALIC哪种类型添加该代码 。
edittext.setTypeface(NULL,Typeface.ITALIC);
文章来源: Change font for EditText in Android?