एंड्रॉइड: पूरे एप्लिकेशन के लिए कस्टम फ़ॉन्ट सेट करना चाहते हैं रनटाइम नहीं


100

क्या एप्लिकेशन के प्रत्येक नियंत्रण में कोई कस्टम फ़ॉन्ट सेट करना संभव है? और जरूरी नहीं कि रनटाइम? (यानी अगर संभव हो या केवल एक बार JAVA फ़ाइल में पूरे आवेदन के लिए xml से)

मैं इस कोड से एक नियंत्रण के लिए फ़ॉन्ट सेट कर सकता हूं।

public static void setFont(TextView textView) {
    Typeface tf = Typeface.createFromAsset(textView.getContext()
            .getAssets(), "fonts/BPreplay.otf");

    textView.setTypeface(tf);

}

और इस कोड के साथ समस्या यह है कि इसे हर नियंत्रण के लिए बुलाया जाना चाहिए। और मैं इसे या इसी तरह की विधि को एक बार कॉल करना चाहता हूं, या यदि संभव हो तो संपत्ति को xml में सेट करें। क्या यह संभव है?


6
हो सकता है कि आप TextView का विस्तार करके एक कस्टम नियंत्रण लिख सकते हैं और निर्माणकर्ता में फ़ॉन्ट सेट करना एक विकल्प हो सकता है, फिर यू आपके टेक्स्टव्यू की ऐप इनलाइन में इस नियंत्रण का उपयोग कर सकता है। स्मृति यू को बचाने के लिए भी एक स्थिर टाइपफेस प्रकार का उपयोग करके संसाधनों के लोडिंग को रोका जा सकता है।
वरुण

@ वरुण: अच्छी तरह से यह विचार मेरा समय बचा सकता है, लेकिन मुझे हर नियंत्रण सेट करना होगा, और प्रत्येक के लिए कस्टम नियंत्रण लिखना फ़ॉन्ट रनटाइम सेट करने की तुलना में लंबा होगा, आपको क्या लगता है? (हालांकि कस्टम नियंत्रण लिखने के लिए +1)
प्रशन

आप केवल एक कस्टम नियंत्रण लिखना चाह सकते हैं जो टेक्स्ट व्यू को बढ़ाता है और एकमात्र संशोधन टाइपफेस को सेट कर देगा। अपने लेआउट फ़ाइलों में क्यूटम नियंत्रण का उपयोग करके यू डॉन को प्रत्येक टेक्स्टव्यू के लिए मैन्युअल रूप से ईवेस्ट करना पड़ता है और यू को अभी भी आश्वस्त किया जा सकता है कि यू यू फ़ॉन्ट फ़ॉन्ट का उपयोग कर रहे हैं।
वरुण

VIEWएक custom text viewऔर custom button viewअलग से लिखने के बजाय रिवाज लिखने के बारे में क्या ? मेरी आवश्यकता हर नियंत्रण के लिए है, और पाठ दृश्य केवल एक उदाहरण था। क्षमा करें, मैं इसका उल्लेख करना भूल गया .. :-(
प्रणाम

1
Satckoverflow question stackoverflow.com/questions/2711858/… पर एक नज़र डालें, यह आपकी मदद करता है।
अश्विनी

जवाबों:


123

संपादित करें : तो यह एक समय हो गया है, और मैं जोड़ना चाहूंगा कि मुझे लगता है कि ऐसा करने का सबसे अच्छा तरीका है, और एक्सएमएल के माध्यम से कोई कम नहीं है!

तो सबसे पहले, आप एक नया वर्ग बनाना चाहते हैं जो आपके द्वारा अनुकूलित किए जाने वाले दृश्य को ओवरराइड करता है। (जैसे एक कस्टम टाइपफेस वाला बटन चाहते हैं? बढ़ाएँ Button)। आइए एक उदाहरण बनाते हैं:

public class CustomButton extends Button {
    private final static int ROBOTO = 0;
    private final static int ROBOTO_CONDENSED = 1;

    public CustomButton(Context context) {
        super(context);
    }

    public CustomButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        parseAttributes(context, attrs); //I'll explain this method later
    }

    public CustomButton(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        parseAttributes(context, attrs);
    }
}

अब, यदि आपके पास एक नहीं है, तो XML दस्तावेज़ को नीचे res/values/attrs.xmlजोड़ें, और जोड़ें:

<resources>
    <!-- Define the values for the attribute -->
    <attr name="typeface" format="enum">
        <enum name="roboto" value="0"/>
        <enum name="robotoCondensed" value="1"/>
    </attr>

    <!-- Tell Android that the class "CustomButton" can be styled, 
         and which attributes it supports -->
    <declare-styleable name="CustomButton">
        <attr name="typeface"/>
    </declare-styleable>
</resources>

ठीक है, इसलिए उस रास्ते से, चलो parseAttributes()पहले से विधि पर वापस आते हैं :

private void parseAttributes(Context context, AttributeSet attrs) {
    TypedArray values = context.obtainStyledAttributes(attrs, R.styleable.CustomButton);

    //The value 0 is a default, but shouldn't ever be used since the attr is an enum
    int typeface = values.getInt(R.styleable.CustomButton_typeface, 0);

    switch(typeface) {
        case ROBOTO: default:
            //You can instantiate your typeface anywhere, I would suggest as a 
            //singleton somewhere to avoid unnecessary copies
            setTypeface(roboto); 
            break;
        case ROBOTO_CONDENSED:
            setTypeface(robotoCondensed);
            break;
    }

    values.recycle();
}

अब तुम बिलकुल तैयार हो गए। आप किसी भी चीज़ के बारे में और अधिक विशेषताएँ जोड़ सकते हैं (आप टाइपफेसिटाइल के लिए एक और एक जोड़ सकते हैं - बोल्ड, इटैलिक, आदि) लेकिन अब देखते हैं कि इसका उपयोग कैसे करें:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res/com.yourpackage.name"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <com.yourpackage.name.CustomButton
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click Me!"
        custom:typeface="roboto" />

</LinearLayout>

xmlns:customलाइन वास्तव में कुछ भी हो सकता है, लेकिन सम्मेलन क्या ऊपर दिखाया जाता है। क्या मायने रखता है कि यह अद्वितीय है, और इसलिए पैकेज नाम का उपयोग किया जाता है। अब आप बस custom:अपनी विशेषताओं के लिए उपसर्ग का उपयोग करें , और android:Android विशेषताओं के लिए उपसर्ग का उपयोग करें ।

एक आखिरी बात: यदि आप इसे एक शैली ( res/values/styles.xml) में उपयोग करना चाहते हैं , तो आपको लाइन नहीं जोड़ना चाहिए xmlns:custom। बिना किसी उपसर्ग वाले विशेषता के नाम को देखें:

<style name="MyStyle>
    <item name="typeface">roboto</item>
</style>

                               (PREVIOUS ANSWER)

Android में एक कस्टम टाइपफेस का उपयोग करना

यह मदद करनी चाहिए। मूल रूप से, XML में ऐसा करने का कोई तरीका नहीं है, और जहां तक ​​मैं बता सकता हूं, कोड में इसे करने का कोई आसान तरीका नहीं है। आपके पास हमेशा एक सेटलाइटआउट () विधि हो सकती है जो एक बार टाइपफेस बनाता है, फिर प्रत्येक के लिए सेट टाइपफेस () चलाता है। जब आप किसी नए आइटम को लेआउट में जोड़ते हैं तो आपको हर बार इसे अपडेट करना होगा। नीचे कुछ इस तरह है:

public void setLayoutFont() {
    Typeface tf = Typeface.createFromAsset(
        getBaseContext().getAssets(), "fonts/BPreplay.otf");
    TextView tv1 = (TextView)findViewById(R.id.tv1);
    tv1.setTypeface(tf);

    TextView tv2 = (TextView)findViewById(R.id.tv2);
    tv2.setTypeface(tf);

    TextView tv3 = (TextView)findViewById(R.id.tv3);
    tv3.setTypeface(tf);
}

संपादित करें : तो मैं बस कुछ इस तरह से खुद को लागू करने के लिए चारों ओर हो गया, और मैं इसे कैसे समाप्त कर रहा हूं यह इस तरह से एक समारोह बना रहा था:

public static void setLayoutFont(Typeface tf, TextView...params) {
    for (TextView tv : params) {
        tv.setTypeface(tf);
    }
}

फिर, बस ऑनक्रिएट () से इस विधि का उपयोग करें, और उन सभी TextViews को पास करें जिन्हें आप अपडेट करना चाहते हैं:

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/BPreplay.otf");
//find views by id...
setLayoutFont(tf, tv1, tv2, tv3, tv4, tv5);

EDIT 9/5/12:

इसलिए चूंकि यह अभी भी विचारों और वोटों को प्राप्त कर रहा है, मैं एक बहुत बेहतर और अधिक पूर्ण विधि जोड़ना चाहूंगा:

Typeface mFont = Typeface.createFromAsset(getAssets(), "fonts/BPreplay.otf");
ViewGroup root = (ViewGroup)findViewById(R.id.myrootlayout);
setFont(root, mFont);

/*
 * Sets the font on all TextViews in the ViewGroup. Searches
 * recursively for all inner ViewGroups as well. Just add a
 * check for any other views you want to set as well (EditText,
 * etc.)
 */
public void setFont(ViewGroup group, Typeface font) {
    int count = group.getChildCount();
    View v;
    for(int i = 0; i < count; i++) {
        v = group.getChildAt(i);
        if(v instanceof TextView || v instanceof Button /*etc.*/)
            ((TextView)v).setTypeface(font);
        else if(v instanceof ViewGroup)
            setFont((ViewGroup)v, font);
    }
}

यदि आप इसे अपने लेआउट की जड़ से गुजारते हैं, तो यह उस लेआउट के भीतर पुनरावृत्ति TextViewया Buttonदृश्य (या आपके द्वारा उस कथन में जोड़े गए किसी भी अन्य) के लिए जाँच करेगा , और बिना आईडी के उन्हें निर्दिष्ट किए बिना फ़ॉन्ट सेट करेगा। यह निश्चित रूप से आप हर दृश्य के लिए फ़ॉन्ट सेट करना चाहते हैं मान रहा है ।


1
मुझे आपके कोड और मेरे कोड में कोई अंतर नहीं दिखाई दे रहा है, सिवाय इसके कि मैं पूरी विधि के लिए फैक्टरी विधि के रूप में विधि का उपयोग करता हूं और आपका कोड एक गतिविधि के लिए लिखा गया लगता है। PS वास्तव में यह केवल पढ़ने के लिए एक और वस्तु जोड़ने के लिए अजीब है केवल फ़ॉन्ट बदलने के लिए textView। ऑफ टॉपिक: एंड्रॉइड को वास्तव में एसेस्ट फोल्डर से एक फॉन्ट लाने के लिए और आर में शामिल करने के लिए एक मैकेनिज्म पेश करना चाहिए ताकि इसे डिजाइन समय में बदला जा सके)
प्रणाम

1
मुझे लगता है कि वास्तविक रूप से कोई अन्य बड़ा अंतर नहीं है, जिससे आप टाइपफेस को बार-बार नहीं बना रहे हैं। वरुण का केवल एक स्थिर टाइपफेस का उपयोग करने का विचार एक ही काम करेगा।
केविन कोप्पॉक

1
क्या आपके उदाहरण के कोड की अंतिम पंक्ति setLayoutFont (tf, tv1, tv2, tv3, tv4, tv5) होनी चाहिए; बजाय सेट टाइपफेस (tf, tv1, tv2, tv3, tv4, tv5) ;?
काइल क्लेग

1
आप नहीं करना चाहिए ? recycleTypedArray values
कोरेथन

1
ग्रैडल का उपयोग करते समय, कस्टम नाम स्थान होना चाहिएxmlns:custom="http://schemas.android.com/apk/res-auto"
Jabari

93

XML के माध्यम से ऐसा करने का एक आसान तरीका है। आपको बस अपना खुद का विजेट बनाने की आवश्यकता है जो TextView का विस्तार करता है।

सबसे पहले, निम्नलिखित सामग्री के साथ Res / मान / attrs.xml में एक फ़ाइल बनाएँ:

<resources>
    <declare-styleable name="TypefacedTextView">
        <attr name="typeface" format="string" />
    </declare-styleable>
</resources>

उसके बाद, अपना कस्टम विजेट बनाएं:

package your.package.widget;

public class TypefacedTextView extends TextView {

    public TypefacedTextView(Context context, AttributeSet attrs) {
        super(context, attrs);

        //Typeface.createFromAsset doesn't work in the layout editor. Skipping...
        if (isInEditMode()) {
            return;
        }

        TypedArray styledAttrs = context.obtainStyledAttributes(attrs, R.styleable.TypefacedTextView);
        String fontName = styledAttrs.getString(R.styleable.TypefacedTextView_typeface);
        styledAttrs.recycle();

        if (fontName != null) {
            Typeface typeface = Typeface.createFromAsset(context.getAssets(), fontName);
            setTypeface(typeface);
        }
    }

}

जैसा कि आप देख सकते हैं, उपरोक्त कोड संपत्ति / फ़ोल्डर के अंदर एक फ़ॉन्ट पढ़ेगा। इस उदाहरण के लिए, मैं मान रहा हूं कि संपत्ति फ़ोल्डर में "custom.ttf" नामक एक फ़ाइल है। आखिर में, XML में विजेट का उपयोग करें:

<your.package.widget.TypefacedTextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:your_namespace="http://schemas.android.com/apk/res/your.package"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Custom fonts in XML are easy"
    android:textColor="#FFF"
    android:textSize="14dip"
    your_namespace:typeface="custom.ttf" />

नोट: आप ग्रहण के लेआउट संपादक में अपना कस्टम फ़ॉन्ट नहीं देख पाएंगे। यही कारण है कि मैंने isInEditMode()चेक डाल दिया । लेकिन अगर आप अपना ऐप चलाते हैं, तो कस्टम फॉन्ट आकर्षण की तरह काम करेगा।

आशा करता हूँ की ये काम करेगा!


मैंने यह कोशिश नहीं की, लेकिन मैंने TextViewकक्षा को बढ़ाकर एक कस्टम नियंत्रण बनाया ; इसमें सेट करें typefaceऔर लेआउट में कस्टम नियंत्रण का उपयोग करें जैसा कि हम सामान्य रूप से करते हैं और यह मेरे लिए काम करता है ... यह सरल था, हालांकि, कि ऊपर एक ...
महेंद्र लिया

1
आपने जैसा कहा था मैंने वैसा ही किया। एकमात्र अंतर यह है कि मैंने इस घटक को पुन: प्रयोज्य बना दिया, क्योंकि सवाल पूछता है कि एक्सएमएल के माध्यम से यह कैसे किया जाए। एक्सएमएल के माध्यम से वास्तव में ऐसा करने का एक तरीका है और इसे करने का तरीका है :)
leocadiotine

एकीकृत करने के लिए बहुत आसान कोड। इससे मेरा काम बनता है। धन्यवाद।
दुरई

1
यह एक स्वीकृत उत्तर होना चाहिए। अच्छी तरह लिखा हुआ। धन्यवाद!
रेयाज़ मुरशेड

1
अमेजिंग, @DominikSuszczewicz! क्या आप कृपया कोड साझा कर सकते हैं ताकि मैं उत्तर को अपडेट कर सकूं?
लीओकाडॉटाइन

15

रॉबोटो टाइपफेस के साथ टेक्स्ट व्यू का उदाहरण:

attr.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

<declare-styleable name="RobotoTextView">
    <attr name="typeface"/>
</declare-styleable>

<attr name="typeface" format="enum">
    <enum name="roboto_thin" value="0"/>
    <enum name="roboto_thin_italic" value="1"/>
    <enum name="roboto_light" value="2"/>
    <enum name="roboto_light_italic" value="3"/>
    <enum name="roboto_regular" value="4"/>
    <enum name="roboto_italic" value="5"/>
    <enum name="roboto_medium" value="6"/>
    <enum name="roboto_medium_italic" value="7"/>
    <enum name="roboto_bold" value="8"/>
    <enum name="roboto_bold_italic" value="9"/>
    <enum name="roboto_black" value="10"/>
    <enum name="roboto_black_italic" value="11"/>
    <enum name="roboto_condensed" value="12"/>
    <enum name="roboto_condensed_italic" value="13"/>
    <enum name="roboto_condensed_bold" value="14"/>
    <enum name="roboto_condensed_bold_italic" value="15"/>
</attr>

</resources>

RobotoTextView.java:

public class RobotoTextView extends TextView {

/*
 * Permissible values ​​for the "typeface" attribute.
 */
private final static int ROBOTO_THIN = 0;
private final static int ROBOTO_THIN_ITALIC = 1;
private final static int ROBOTO_LIGHT = 2;
private final static int ROBOTO_LIGHT_ITALIC = 3;
private final static int ROBOTO_REGULAR = 4;
private final static int ROBOTO_ITALIC = 5;
private final static int ROBOTO_MEDIUM = 6;
private final static int ROBOTO_MEDIUM_ITALIC = 7;
private final static int ROBOTO_BOLD = 8;
private final static int ROBOTO_BOLD_ITALIC = 9;
private final static int ROBOTO_BLACK = 10;
private final static int ROBOTO_BLACK_ITALIC = 11;
private final static int ROBOTO_CONDENSED = 12;
private final static int ROBOTO_CONDENSED_ITALIC = 13;
private final static int ROBOTO_CONDENSED_BOLD = 14;
private final static int ROBOTO_CONDENSED_BOLD_ITALIC = 15;
/**
 * List of created typefaces for later reused.
 */
private final static SparseArray<Typeface> mTypefaces = new SparseArray<Typeface>(16);

/**
 * Simple constructor to use when creating a view from code.
 *
 * @param context The Context the view is running in, through which it can
 *                access the current theme, resources, etc.
 */
public RobotoTextView(Context context) {
    super(context);
}

/**
 * Constructor that is called when inflating a view from XML. This is called
 * when a view is being constructed from an XML file, supplying attributes
 * that were specified in the XML file. This version uses a default style of
 * 0, so the only attribute values applied are those in the Context's Theme
 * and the given AttributeSet.
 * <p/>
 * <p/>
 * The method onFinishInflate() will be called after all children have been
 * added.
 *
 * @param context The Context the view is running in, through which it can
 *                access the current theme, resources, etc.
 * @param attrs   The attributes of the XML tag that is inflating the view.
 * @see #RobotoTextView(Context, AttributeSet, int)
 */
public RobotoTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
    parseAttributes(context, attrs);
}

/**
 * Perform inflation from XML and apply a class-specific base style. This
 * constructor of View allows subclasses to use their own base style when
 * they are inflating.
 *
 * @param context  The Context the view is running in, through which it can
 *                 access the current theme, resources, etc.
 * @param attrs    The attributes of the XML tag that is inflating the view.
 * @param defStyle The default style to apply to this view. If 0, no style
 *                 will be applied (beyond what is included in the theme). This may
 *                 either be an attribute resource, whose value will be retrieved
 *                 from the current theme, or an explicit style resource.
 * @see #RobotoTextView(Context, AttributeSet)
 */
public RobotoTextView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    parseAttributes(context, attrs);
}

/**
 * Parse the attributes.
 *
 * @param context The Context the view is running in, through which it can access the current theme, resources, etc.
 * @param attrs   The attributes of the XML tag that is inflating the view.
 */
private void parseAttributes(Context context, AttributeSet attrs) {
    TypedArray values = context.obtainStyledAttributes(attrs, R.styleable.RobotoTextView);

    int typefaceValue = values.getInt(R.styleable.RobotoTextView_typeface, 0);
    values.recycle();

    setTypeface(obtaintTypeface(context, typefaceValue));
}

/**
 * Obtain typeface.
 *
 * @param context       The Context the view is running in, through which it can
 *                      access the current theme, resources, etc.
 * @param typefaceValue values ​​for the "typeface" attribute
 * @return Roboto {@link Typeface}
 * @throws IllegalArgumentException if unknown `typeface` attribute value.
 */
private Typeface obtaintTypeface(Context context, int typefaceValue) throws IllegalArgumentException {
    Typeface typeface = mTypefaces.get(typefaceValue);
    if (typeface == null) {
        typeface = createTypeface(context, typefaceValue);
        mTypefaces.put(typefaceValue, typeface);
    }
    return typeface;
}

/**
 * Create typeface from assets.
 *
 * @param context       The Context the view is running in, through which it can
 *                      access the current theme, resources, etc.
 * @param typefaceValue values ​​for the "typeface" attribute
 * @return Roboto {@link Typeface}
 * @throws IllegalArgumentException if unknown `typeface` attribute value.
 */
private Typeface createTypeface(Context context, int typefaceValue) throws IllegalArgumentException {
    Typeface typeface;
    switch (typefaceValue) {
        case ROBOTO_THIN:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Thin.ttf");
            break;
        case ROBOTO_THIN_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-ThinItalic.ttf");
            break;
        case ROBOTO_LIGHT:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Light.ttf");
            break;
        case ROBOTO_LIGHT_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-LightItalic.ttf");
            break;
        case ROBOTO_REGULAR:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Regular.ttf");
            break;
        case ROBOTO_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Italic.ttf");
            break;
        case ROBOTO_MEDIUM:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Medium.ttf");
            break;
        case ROBOTO_MEDIUM_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-MediumItalic.ttf");
            break;
        case ROBOTO_BOLD:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Bold.ttf");
            break;
        case ROBOTO_BOLD_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-BoldItalic.ttf");
            break;
        case ROBOTO_BLACK:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Black.ttf");
            break;
        case ROBOTO_BLACK_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-BlackItalic.ttf");
            break;
        case ROBOTO_CONDENSED:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Condensed.ttf");
            break;
        case ROBOTO_CONDENSED_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-CondensedItalic.ttf");
            break;
        case ROBOTO_CONDENSED_BOLD:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-BoldCondensed.ttf");
            break;
        case ROBOTO_CONDENSED_BOLD_ITALIC:
            typeface = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-BoldCondensedItalic.ttf");
            break;
        default:
            throw new IllegalArgumentException("Unknown `typeface` attribute value " + typefaceValue);
    }
    return typeface;
}

}

उपयोग का उदाहरण:

<your.package.widget.RobotoTextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:typeface="roboto_thin"
                android:textSize="22sp"
                android:text="Roboto Thin"/>

संसाधन: रोबोटो और नोटो फोंट


जावा वर्ग में फोंट की आईडी को ठीक किए बिना इस समाधान का उपयोग करने का एक तरीका है? शायद एनम अटरस से इन अंतिम क्षेत्रों को पढ़ें .. निजी अंतिम स्थिर int ROBOTO_THIN = 0; निजी अंतिम स्थिर int ROBOTO_THIN_ITALIC = 1; निजी अंतिम स्थिर int ROBOTO_LIGHT = 2; ...
आर्थर मेलो

3

यह बहुत देर हो चुकी है, लेकिन यह मेरी मदद करता है दूसरे
मैंने बनाया है CustomTextView जिसमें टाइपफेस नामक एक विशेषता है और यह कैशिंग के बिना टाइपफेस लोडिंग के साथ मेमोरी लीक समस्या की देखभाल करता है

प्रथम Fontsश्रेणी जो केवल एक समय के लिए परिसंपत्तियों से फ़ॉन्ट लोड करती है

 import android.content.Context;
import android.graphics.Typeface;

import java.util.Hashtable;

/**
 * Created by tonyhaddad on 7/19/15.
 */
public class Fonts {
    private Context context;

    public Fonts(Context context) {
        this.context = context;
    }
    private static Hashtable<String, Typeface> sTypeFaces = new Hashtable<String, Typeface>(
            4);
    public static Typeface getTypeFace(Context context, String fileName) {
        Typeface tempTypeface = sTypeFaces.get(fileName);

        if (tempTypeface == null) {
            String fontPath=null;
            if(fileName=="metabold")
                fontPath ="fonts/Meta-Bold.ttf";

            else if(fileName=="metanormal")
                fontPath="fonts/Meta-Normal.ttf";
            else if(fileName=="gsligh")
                fontPath="fonts/gesslight.ttf";
            else if(fileName=="bold")
                fontPath="fonts/Lato-Bold.ttf";
            else if(fileName=="rcr")
                fontPath="fonts/RobotoCondensed-Regular.ttf";

            else if(fileName=="mpr")
                fontPath="fonts/MyriadPro-Regular.otf";
            else if(fileName=="rr")
                fontPath="fonts/Roboto-Regular.ttf";

            tempTypeface = Typeface.createFromAsset(context.getAssets(), fontPath);
            sTypeFaces.put(fileName, tempTypeface);
        }

        return tempTypeface;
    }
}

फिर आपको attrs.xml में एक कस्टम विशेषता जोड़ने की आवश्यकता है

<declare-styleable name="CustomFontTextView">
        <attr name="typeFace" format="string" />

    </declare-styleable>

तब कस्टम वर्ग

 package package_name;

/**
 * Created by tonyhaddad on 8/26/15.
 */

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

import package_name.R;

public class CustomFontTextView extends TextView {

    String typeFace;


    public CustomFontTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        if (isInEditMode()) {
            return;
        }
        TypedArray a = context.getTheme().obtainStyledAttributes(
                attrs,
                R.styleable.CustomFontTextView,
                0, 0);
        try {
            typeFace = a.getString(0);
        } finally {
            a.recycle();
        }

        if(typeFace!=null && !typeFace.equalsIgnoreCase(""))
        {
            Typeface tf = Fonts.getTypeFace(context, typeFace);
            setTypeface(tf);
        }
        init();
    }

    public CustomFontTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        if (isInEditMode()) {
            return;
        }
        TypedArray a = context.getTheme().obtainStyledAttributes(
                attrs,
                R.styleable.CustomFontTextView,
                0, 0);
        try {
            typeFace = a.getString(0);
        } finally {
            a.recycle();
        }

        if(typeFace!=null && !typeFace.equalsIgnoreCase(""))
        {
            Typeface tf = Fonts.getTypeFace(context, typeFace);
            setTypeface(tf);
        }

        init();
    }

    public CustomFontTextView(Context context) {
        super(context);



        if(typeFace!=null && !typeFace.equalsIgnoreCase(""))
        {
            Typeface tf = Fonts.getTypeFace(context, typeFace);
            setTypeface(tf);
        }
        init();
    }


    private void init() {

    }

    public String getTypeFace() {
        return typeFace;
    }

    public void setTypeFace(String typeFace) {
        this.typeFace = typeFace;
        invalidate();
        requestLayout();
    }
}

और अंत में टेक्स्ट व्यू जोड़ें

  <package_name.CustomFontTextView
            xmlns:custom="http://schemas.android.com/apk/res-auto/package_name"
            android:id="@+id/txt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="41dp"
            android:gravity="center_vertical"
            android:text="text"
            android:textColor="#000"
            android:textSize="23sp"
            custom:typeFace="metanormal"/>

और आप सेट कर सकते हैं फ़ॉन्ट के साथ progrmaticlly setTypeFace विधि
भी आप अपने माता-पिता लेआउट के लिए कस्टम नाम स्थान स्थानांतरित कर सकते हैं यदि आप इस दृश्य से एक से अधिक का उपयोग करना चाहते हैं

हैप्पी कोडिंग :)


सरल स्ट्रेटाइट उत्तर।
eyadMhanna

2

नीचे दी गई विधि, ऑनक्रीट () में कहा गया है और आपके सबसे बाहरी व्यूग्रुप को पारित कर दिया है, सब कुछ के लिए काम करेगा लेकिन पाठ जो गतिशील रूप से बनाया गया है (यानी गतिशील सूची, अलर्ट, आदि)। सबसे बाहरी व्यूग्रुप पाने का एक आसान तरीका यह है कि अपने किसी एक दृश्य पर getRootView का उपयोग करें।

public void onCreate(Bundle savedInstanceState){
    //onCreate code...
    EditText text = (EditText) findViewById(R.id.editText1);
    setTypeFaceForViewGroup((ViewGroup) text.getRootView());
}

private void setTypeFaceForViewGroup(ViewGroup vg){

    for (int i = 0; i < vg.getChildCount(); i++) {

            if (vg.getChildAt(i) instanceof ViewGroup)
                setTypeFaceForViewGroup((ViewGroup) vg.getChildAt(i));

            else if (vg.getChildAt(i) instanceof TextView)
                ((TextView) vg.getChildAt(i)).setTypeface(Typeface.createFromAsset(getAssets(), "fonts/Your_Font.ttf"));

    }

}

यह डायनामिक कंटेंट के लिए भी काम करना चाहिए, आपको इसे बनाने के बाद, आपको इसे कॉल करना होगा, जो कुछ भी आपने बनाया है, उसमें से गुजरने के बाद (मैंने इसका परीक्षण नहीं किया है, हालाँकि)।

स्मृति को सहेजने के लिए, आप शायद टाइपफेस को एक स्थिर चर बनाना चाहते हैं, बल्कि हर बार एक नया लूप बनाने के बजाय जैसे मैं यहां हूं।


मैं इस समाधान की अनुशंसा नहीं करता, क्योंकि आप उसी तत्व का एक नया उदाहरण बना रहे हैं जिसके लिए आप इसे लागू करना चाहते हैं। यह स्मृति समस्याओं का कारण हो सकता है।
दोष

यह मेरे नोट में अंत में कवर किया गया है।
क्रिस

2

यदि आप अधिक सामान्य प्रोग्रामेटिक सॉल्यूशन की तलाश में हैं, तो मैंने एक स्टैटिक क्लास बनाई, जिसका उपयोग संपूर्ण दृश्य (गतिविधि UI) के टाइपफेस को सेट करने के लिए किया जा सकता है। ध्यान दें कि मैं मोनो (C #) के साथ काम कर रहा हूं लेकिन आप इसे जावा का उपयोग करके आसानी से लागू कर सकते हैं।

आप इस वर्ग को एक लेआउट या एक विशिष्ट दृश्य पास कर सकते हैं जिसे आप अनुकूलित करना चाहते हैं। यदि आप सुपर कुशल होना चाहते हैं तो आप सिंगलटन पैटर्न का उपयोग करके इसे लागू कर सकते हैं।

public static class AndroidTypefaceUtility 
{
    static AndroidTypefaceUtility()
    {
    }
    //Refer to the code block beneath this one, to see how to create a typeface.
    public static void SetTypefaceOfView(View view, Typeface customTypeface)
    {
    if (customTypeface != null && view != null)
    {
            try
            {
                if (view is TextView)
                    (view as TextView).Typeface = customTypeface;
                else if (view is Button)
                    (view as Button).Typeface = customTypeface;
                else if (view is EditText)
                    (view as EditText).Typeface = customTypeface;
                else if (view is ViewGroup)
                    SetTypefaceOfViewGroup((view as ViewGroup), customTypeface);
                else
                    Console.Error.WriteLine("AndroidTypefaceUtility: {0} is type of {1} and does not have a typeface property", view.Id, typeof(View));
                }
                catch (Exception ex)
                {
                    Console.Error.WriteLine("AndroidTypefaceUtility threw:\n{0}\n{1}", ex.GetType(), ex.StackTrace);
                    throw ex;
                }
            }
            else
            {
                Console.Error.WriteLine("AndroidTypefaceUtility: customTypeface / view parameter should not be null");
            }
        }

        public static void SetTypefaceOfViewGroup(ViewGroup layout, Typeface customTypeface)
        {
            if (customTypeface != null && layout != null)
            {
                for (int i = 0; i < layout.ChildCount; i++)
                {
                    SetTypefaceOfView(layout.GetChildAt(i), customTypeface);
                }
            }
            else
            {
                Console.Error.WriteLine("AndroidTypefaceUtility: customTypeface / layout parameter should not be null");
            }
        }

    }

अपनी गतिविधि में आपको एक टाइपफेस ऑब्जेक्ट बनाने की आवश्यकता होगी। मैं अपने संसाधन / संपत्ति / निर्देशिका में रखी एक .ttf फ़ाइल का उपयोग करके OnCreate () में मेरा निर्माण करता हूं। सुनिश्चित करें कि फ़ाइल को उसके गुण में एक Android संपत्ति के रूप में चिह्नित किया गया है।

protected override void OnCreate(Bundle bundle)
{               
    ...
    LinearLayout rootLayout = (LinearLayout)FindViewById<LinearLayout>(Resource.Id.signInView_LinearLayout);
    Typeface allerTypeface = Typeface.CreateFromAsset(base.Assets,"Aller_Rg.ttf");
    AndroidTypefaceUtility.SetTypefaceOfViewGroup(rootLayout, allerTypeface);
}

2

दुर्भाग्य से, एंड्रॉइड आपके संपूर्ण ऐप के लिए फ़ॉन्ट बदलने के लिए त्वरित, आसान और स्वच्छ तरीका प्रदान नहीं करता है। लेकिन हाल ही में मैंने इस मामले पर ध्यान दिया है और कुछ उपकरण बनाए हैं जो आपको बिना किसी कोडिंग के फ़ॉन्ट बदलने की अनुमति देते हैं (आप इसे xml, शैलियों और यहां तक ​​कि पाठ दिखावे के माध्यम से भी कर सकते हैं)। वे इसी तरह के समाधान पर आधारित हैं जैसे आप यहां अन्य उत्तरों में देखते हैं, लेकिन अधिक लचीलेपन के लिए अनुमति देते हैं। आप इस ब्लॉग पर इसके बारे में सब पढ़ सकते हैं , और यहाँ जीथब प्रोजेक्ट देख सकते हैं

इन उपकरणों को कैसे लागू किया जाए, इसका एक उदाहरण यहां दिया गया है। अपनी सभी फॉन्ट फाइल्स को इसमें डालें assets/fonts/। फिर, उन फोंट को एक xml फ़ाइल (जैसे res/xml/fonts.xml) में घोषित करें और इस फ़ाइल को अपने एप्लिकेशन में जल्दी से लोड करें TypefaceManager.initialize(this, R.xml.fonts);(जैसे, आपके एप्लिकेशन वर्ग के चालू में)। Xml फ़ाइल इस तरह दिखती है:

<?xml version="1.0" encoding="utf-8"?>
<familyset>

    <!-- Some Font. Can be referenced with 'someFont' or 'aspergit' -->
    <family>
        <nameset>
            <name>aspergit</name>
            <name>someFont</name>
        </nameset>
        <fileset>
            <file>Aspergit.ttf</file>
            <file>Aspergit Bold.ttf</file>
            <file>Aspergit Italic.ttf</file>
            <file>Aspergit Bold Italic.ttf</file>
        </fileset>
    </family>

    <!-- Another Font. Can be referenced with 'anotherFont' or 'bodoni' -->
    <family>
        <nameset>
            <name>bodoni</name>
            <name>anotherFont</name>
        </nameset>
        <fileset>
            <file>BodoniFLF-Roman.ttf</file>
            <file>BodoniFLF-Bold.ttf</file>
        </fileset>
    </family>

</familyset>

अब आप अपनी शैली या xml में इन फोंट का उपयोग कर सकते हैं (बशर्ते कि आप उन उपकरणों का उपयोग करें जिनका मैंने ऊपर उल्लेख किया है), com.innovattic.font.FontTextViewअपने xml लेआउट में कस्टम UI तत्व का उपयोग करके । नीचे आप देख सकते हैं कि कैसे आप अपने संपूर्ण ऐप के सभी टेक्स्ट में एक फ़ॉन्ट लागू कर सकते हैं, बस संपादन करके res/values/styles.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">

    <!-- Application theme -->
    <!-- Use a different parent if you don't want Holo Light -->
    <style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
        <item name="android:textViewStyle">@style/MyTextViewStyle</item>
    </style>

    <!-- Style to use for ALL text views (including FontTextView) -->
    <!-- Use a different parent if you don't want Holo Light -->
    <style name="MyTextViewStyle" parent="@android:style/Widget.Holo.Light.TextView">
        <item name="android:textAppearance">@style/MyTextAppearance</item>
    </style>

    <!-- Text appearance to use for ALL text views (including FontTextView) -->
    <!-- Use a different parent if you don't want Holo Light -->
    <style name="MyTextAppearance" parent="@android:style/TextAppearance.Holo">
        <!-- Alternatively, reference this font with the name "aspergit" -->
        <!-- Note that only our own TextView's will use the font attribute -->
        <item name="flFont">someFont</item>
        <item name="android:textStyle">bold|italic</item>
    </style>

    <!-- Alternative style, maybe for some other widget -->
    <style name="StylishFont">
        <item name="flFont">anotherFont</item>
        <item name="android:textStyle">normal</item>
    </style>

</resources>

साथ में res/layout/layout.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <!-- This text view is styled with the app theme -->
    <com.innovattic.font.FontTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This uses my font in bold italic style" />

    <!-- This text view is styled here and overrides the app theme -->
    <com.innovattic.font.FontTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:flFont="anotherFont"
        android:textStyle="normal"
        android:text="This uses another font in normal style" />

    <!-- This text view is styled with a style and overrides the app theme -->
    <com.innovattic.font.FontTextView
        style="@style/StylishFont"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This also uses another font in normal style" />

</LinearLayout>

अपने Android मेनिफ़ेस्ट में थीम लागू करना न भूलें।


2

के महान समाधान के लिए एक नोट जोड़ना चाहूंगा leocadiotine। यह सही है, लेकिन इस कस्टम टेक्स्टव्यू का उपयोग करते समय कई बार एप्लिकेशन को धीमा कर दिया जाता है, क्योंकि इसे टेक्स्टव्यू बनाए जाने पर हर बार परिसंपत्तियों का उपयोग करना पड़ता है। मैं की तरह कुछ का उपयोग करने के लिए सुझाव View Holder patternमें Adapters, मैं एक उदाहरण लिखा है:

public class Fonts {

    private static final Map<String, Typeface> typefaces = new HashMap<String, Typeface>();

    public static Typeface getTypeface(Context ctx, String fontName) {
        Typeface typeface = typefaces.get(fontName);
        if (typeface == null) {
            typeface = Typeface.createFromAsset(ctx.getAssets(), fontName);
            typefaces.put(fontName, typeface);
        }
        return typeface;
    } 
}

इस तरह से आवेदन केवल एक बार प्रति परिसंपत्तियों तक पहुंच प्राप्त करता है, और यह उन्हें आगे की जरूरतों के लिए स्मृति में रखता है।


0

मुझे नहीं पता कि यह पूरे ऐप को बदलता है, लेकिन मैंने कुछ घटकों को बदलने में कामयाबी हासिल की है जो अन्यथा ऐसा करने से नहीं बदले जा सकते हैं:

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Lucida Sans Unicode.ttf");
Typeface.class.getField("DEFAULT").setAccessible(true);
Typeface.class.getField("DEFAULT_BOLD").setAccessible(true);
Typeface.class.getField("DEFAULT").set(null, tf);
Typeface.class.getField("DEFAULT_BOLD").set(null, tf);

@richard, मैं स्थानीय फ़ॉन्ट के अनुसार कस्टम फ़ॉन्ट सेट करना चाहता हूं, उदाहरण के लिए, मैं एरियल TTF सेट करना चाहता हूं जब हम कभी अंग्रेजी लोकेल का उपयोग करते हैं, और जब मैं कोरियाई loacale का उपयोग करते हुए गोथिक TTF सेट करता हूं
द्विवेदी जी

0

मुझे इस लिंक पर कदम से कदम की जानकारी मिली है, लिंक: https://github.com/jaydipumaretiya/CustomTypeface/

एंड्रॉइड में टाइपफेस का सही तरीके से उपयोग करने के कई तरीके हैं, आपको अपनी टाइपफेस फ़ाइल को सीधे अपने मुख्य के तहत एसेट्स फ़ोल्डर में रखना होगा और इसे रन-टाइम का उपयोग कर सकते हैं।

अन्य सरल तरीका आपकी xml फ़ाइल में टाइपफेस सेट करने के लिए डिफ़ॉल्ट लाइब्रेरी का उपयोग करना है। मैंने TextView, EditText, Button, CheckBox, RadioButton और AutoCompleteTextView और Android में अन्य wedget के लिए टाइपफेस सेट करने के लिए इस कस्टम टाइपफेस लाइब्रेरी को प्राथमिकता दी है।


जीथब लिंक काम नहीं कर रहा है।
थॉमस

0

Android 8.0 (एपीआई स्तर 26) XML में एक नई सुविधा, फ़ॉन्ट्स पेश करता है। आप एक फ़ॉन्ट फ़ाइल बना सकते हैं और इसे style.xml में सेट कर सकते हैं।

संसाधनों के रूप में फ़ॉन्ट जोड़ने के लिए, Android स्टूडियो में निम्न चरणों का पालन करें:

1. Res फ़ोल्डर पर राइट-क्लिक करें और नया> Android संसाधन निर्देशिका पर जाएं। नई संसाधन निर्देशिका विंडो प्रकट होती है।

2. संसाधन प्रकार सूची में, फ़ॉन्ट का चयन करें और फिर ठीक पर क्लिक करें। नोट: संसाधन निर्देशिका का नाम फ़ॉन्ट होना चाहिए।

3. फ़ॉन्ट फ़ोल्डर में अपनी फ़ॉन्ट फ़ाइलें जोड़ें।

एक फ़ॉन्ट परिवार बनाने के लिए, निम्न चरणों का पालन करें:

1. फ़ॉन्ट फ़ोल्डर पर क्लिक करें और नया> फ़ॉन्ट संसाधन फ़ाइल पर जाएं। नई संसाधन फ़ाइल विंडो दिखाई देती है।

फ़ाइल का नाम 2.Enter, और फिर ठीक क्लिक करें। नया फॉन्ट संसाधन XML संपादक में खुलता है।

3. प्रत्येक फ़ॉन्ट फ़ाइल, शैली, और तत्व में वजन विशेषता को शामिल करें। निम्न XML फ़ॉन्ट संसाधन XML में फ़ॉन्ट-संबंधित विशेषताओं को जोड़कर दिखाता है:

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

शैली में फ़ॉन्ट जोड़ना

Style.xml खोलें, और जिस फॉन्ट फाइल को आप एक्सेस करना चाहते हैं, उसके लिए FontFamily विशेषता सेट करें।

 <style name="customfontstyle" parent="@android:style/TextAppearance.Small">
    <item name="android:fontFamily">@font/lobster</item>
</style>

स्रोत: XML में फ़ॉन्ट्स

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.