Changer la police pour EditText dans Android?

Est-il possible de changer la police pour un EditText dans Android? Je veux qu'il corresponde à la police que j'ai définie pour tous mes textViews.

23
demandé sur William L. 2012-05-26 18:08:26

7 réponses

 editText.setTypeface(Typeface.SERIF); 

Comme comme pour TextView.

 <TextView
  ...
     android:typeface="serif"
  ... />

Edit: ci-dessus est le XML

34
répondu Samir Mangroliya 2018-06-20 02:27:51

Solution1:: appelez simplement ces méthodes en passant la vue parent en argument.

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) {
 }
}

Solution2:: vous pouvez sous-classer la classe TextView avec votre police personnalisée et l'utiliser à la place de 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);
        }
    }

 }
25
répondu Shankar Agarwal 2012-05-26 14:10:16

Créer un polices dossier sur actif dossier et de mettre votre .fichier de police ttf, puis dans la fonction onCreate () écrire:

EditText editText =(EditText)findViewById(R.id.insert_yors_edit_text_layout);
Typeface type = Typeface.createFromAsset(getAssets(),"fonts/yours_font.ttf"); 
editText.setTypeface(type);
8
répondu Sara 2013-08-13 01:59:21
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 ));
                        }
                }
        }

Dans votre activité ou Fragment , obtenez la mise en page principale

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);
    }
1
répondu Ishtiaq 2014-10-28 12:27:11

, Vous pouvez créer police dossier sous répertoire res dans la dernière version d'Android studio 3 .Ensuite, copiez et passez-le dans le dossier font . Maintenant il suffit d'ajouter fontFamily à EditText balise xml.

Comme ci-dessous.

        <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" />

Nous utilisons android:fontFamily="@font/ritaric" pour appliquer la police sur EditText.

1
répondu sirvan alie 2017-12-01 08:26:56

Première Méthode

Utilisez ce code dans votre classe 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

Deuxième Méthode

  1. Créez une nouvelle classe java et comme vous le souhaitez

    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);
    }
    }
    
  2. Utilisez - le dans votre fichier Xml

                  <YourPackageNAme.CustomEditText
                   android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:background="@null"/>
    
0
répondu Sunil 2017-03-28 11:58:31

Ajouter ce code dans votre fichier java Quel type vous voulez, vous pouvez ajouter comme NORMAL, italique, gras, BOLD_ITALIC.

Edittext.setTypeface(null, police de caractères.Italique);

0
répondu bAdmAn ViRaL 2018-01-18 11:28:03