web-dev-qa-db-fra.com

Comment faire un TextView personnalisé?

J'essaie de créer une vue de texte personnalisée contenant la police définie à partir d'un chemin donné. S'il vous plaît, donnez-moi un exemple et comment je peux le faire avec moins de code:

<TextView
   Android:id="@+id/textView2"
   Android:layout_width="wrap_content"
   Android:layout_height="wrap_content"
   Android:text="@string/accountInfoText"
   Android:textColor="#727272"
   Android:textSize="18dp" />
30
Sunil_Suthar
import Android.content.Context;
import Android.graphics.Canvas;
import Android.graphics.Typeface;
import Android.util.AttributeSet;
import Android.widget.TextView;

public class FontTextView extends TextView {


    public FontTextView(Context context) {
      super(context);
      Typeface face=Typeface.createFromAsset(context.getAssets(), "Helvetica_Neue.ttf"); 
      this.setTypeface(face); 
    }

    public FontTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
     Typeface face=Typeface.createFromAsset(context.getAssets(), "Helvetica_Neue.ttf"); 
  this.setTypeface(face); 
    }

    public FontTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
     Typeface face=Typeface.createFromAsset(context.getAssets(), "Helvetica_Neue.ttf"); 
  this.setTypeface(face); 
    }

    protected void onDraw (Canvas canvas) {
        super.onDraw(canvas);
        
       
    }

}

et en xml:

<com.util.FontTextView
                    Android:id="@+id/textView2"
                    Android:layout_width="wrap_content"
                    Android:layout_height="wrap_content"
                    Android:text="@string/accountInfoText"
                    Android:textColor="#727272"
                    Android:textSize="18dp" />
92
SuN

Créez une vue personnalisée pour Textview. Étape 1 - Créez une entrée dans le fichier attrs.xml et donnez la possibilité de sélectionner Police en tant que liste dans TextView personnalisé. 

<declare-styleable name="CustomFontTextView">
    <attr name="fontName"/>
</declare-styleable>

Étape 2: Créez l'entrée enum avec la liste des polices et attribuez des valeurs uniques

<attr name="fontName" format="enum">
   <enum name="Roboto_Bold" value="1" />
    <enum name="Roboto_Italic" value="2" />
    <enum name="Roboto_Light" value="3" />
    <enum name="Roboto_Medium" value="4" />
    <enum name="Roboto_Regular" value="5" />
    <enum name="Roboto_Thin" value="6" />
</attr>

Étape 3: saisissez toutes les polices dans strings.xml

<string name="Roboto_Bold">Roboto-Bold</string>
<string name="Roboto_Medium">Roboto-Medium</string>
<string name="Roboto_Light">Roboto-Light</string>
<string name="Roboto_Regular">Roboto-Regular</string>
<string name="Roboto_Thin">Roboto-Thin</string>
<string name="Roboto_Italic">Roboto-Italic</string>

Étape 4: créez un dossier de ressources et copiez toutes les polices nécessaires à placer dans le dossier.

Étape 5: Créez une classe qui étend TextView

 import Android.content.Context;
 import Android.content.res.TypedArray;
 import Android.graphics.Typeface;
 import Android.util.AttributeSet;
 import Android.widget.TextView;

/**
* Created by ANKIT 
*/
public class CustomFontTextView extends TextView {

    String customFont;

    public CustomFontTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        style(context, attrs);
    }

    public CustomFontTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        style(context, attrs);

    }

    private void style(Context context, AttributeSet attrs) {

        TypedArray a = context.obtainStyledAttributes(attrs,
                R.styleable.CustomFontTextView);
        int cf = a.getInteger(R.styleable.CustomFontTextView_fontName, 0);
        int fontName = 0;
        switch (cf)
        {
            case 1:
                fontName = R.string.Roboto_Bold;
                break;
            case 2:
                fontName = R.string.Roboto_Italic;
                break;
            case 3:
                fontName = R.string.Roboto_Light;
                break;
            case 4:
                fontName = R.string.Roboto_Medium;
                break;
            case 5:
                fontName = R.string.Roboto_Regular;
                break;
            case 6:
                fontName = R.string.Roboto_Thin;
                break;
            default:
                fontName = R.string.Roboto_Regular;
                break;
        }

        customFont = getResources().getString(fontName);

        Typeface tf = Typeface.createFromAsset(context.getAssets(),
                "font/" + customFont + ".ttf");
        setTypeface(tf);
        a.recycle();
    }
}

Vous pouvez utiliser cette classe personnalisée de cette façon. .. utilisez votre packageName.ClassName

 <ankit.com.customui.CustomFontTextView
  Android:layout_width="match_parent"
  Android:text="Hello World Ankit"
  Android:textSize="16sp"
  app:fontName="Roboto_Medium"
  Android:layout_height="wrap_content"/>
29
bond007