टेक्स्टवॉ फिट करने के लिए टेक्स्ट फॉन्ट साइज कैसे एडजस्ट करें


178

क्या किसी स्थान को फिट करने के लिए एक टेक्स्टव्यू में ग्रंथों को समायोजित करने के लिए एंड्रॉइड में कोई रास्ता है?

जैसे मैं एक का उपयोग कर रहा हूं TableLayoutऔर TextViewप्रत्येक पंक्ति में कई एस जोड़ रहा हूं । चूंकि मैं नहीं चाहताTextView पाठ को लपेटने के लिए मैं यह देखूँ कि यह सामग्री के फ़ॉन्ट आकार को कम करता है।

कोई विचार?

मैंने कोशिश की है measureText, लेकिन जब से मुझे स्तंभ का आकार नहीं पता है, यह उपयोग करने के लिए परेशानी भरा लगता है। यह वह कोड है जहां मैं फ़ॉन्ट आकार को कुछ फिट करने के लिए बदलना चाहता हूं

TableRow row = new TableRow(this);   
for (int i=0; i < ColumnNames.length; i++) {    
    TextView textColumn = new TextView(this);      
    textColumn.setText(ColumnNames[i]);
    textColumn.setPadding(0, 0, 1, 0);
    textColumn.setTextColor(getResources().getColor(R.drawable.text_default));          
    row.addView(textColumn, new TableRow.LayoutParams()); 
} 
table.addView(row, new TableLayout.LayoutParams());  

Dunni's कोड के आधार पर मेरे समाधान की जांच करें यहां stackoverflow.com/questions/5033012/… नोट: मैंने इसे लूप के साथ लागू नहीं किया। पुनश्च: धन्यवाद dunni
वीएसएम

जवाबों:


129

नीचे दिए गए समाधान में सभी सुझावों को शामिल किया गया है। यह शुरू होता है जो मूल रूप से दुनी द्वारा पोस्ट किया गया था। यह gjpc की तरह एक द्विआधारी खोज का उपयोग करता है, लेकिन यह थोड़ा अधिक पठनीय है। इसमें gregm के बग फिक्स और मेरे स्वयं के बग-फिक्स भी शामिल हैं।

import android.content.Context;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.widget.TextView;

public class FontFitTextView extends TextView {

    public FontFitTextView(Context context) {
        super(context);
        initialise();
    }

    public FontFitTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initialise();
    }

    private void initialise() {
        mTestPaint = new Paint();
        mTestPaint.set(this.getPaint());
        //max size defaults to the initially specified text size unless it is too small
    }

    /* Re size the font so the specified text fits in the text box
     * assuming the text box is the specified width.
     */
    private void refitText(String text, int textWidth) 
    { 
        if (textWidth <= 0)
            return;
        int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();
        float hi = 100;
        float lo = 2;
        final float threshold = 0.5f; // How close we have to be

        mTestPaint.set(this.getPaint());

        while((hi - lo) > threshold) {
            float size = (hi+lo)/2;
            mTestPaint.setTextSize(size);
            if(mTestPaint.measureText(text) >= targetWidth) 
                hi = size; // too big
            else
                lo = size; // too small
        }
        // Use lo so that we undershoot rather than overshoot
        this.setTextSize(TypedValue.COMPLEX_UNIT_PX, lo);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
    {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
        int height = getMeasuredHeight();
        refitText(this.getText().toString(), parentWidth);
        this.setMeasuredDimension(parentWidth, height);
    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start, final int before, final int after) {
        refitText(text.toString(), this.getWidth());
    }

    @Override
    protected void onSizeChanged (int w, int h, int oldw, int oldh) {
        if (w != oldw) {
            refitText(this.getText().toString(), w);
        }
    }

    //Attributes
    private Paint mTestPaint;
}

9
सभी प्रतिक्रिया के संयोजन के लिए धन्यवाद। मैं देखता हूं कि समाधान केवल चौड़ाई को ध्यान में रखता है । मेरी समस्या यह है कि शौकीन ऊंचाई से अधिक है।
AlikElzin-kilaka

3
ओह, यह आंशिक रूप से रनटाइम पर काम करता है। डिवाइस ओट एम्यूलेटर पर, टेक्स्ट को आधे रास्ते तक काट दिया जाता है। ग्रहण लेआउट संपादक पर यह ठीक लग रहा है। कोई विचार?
एलिकएल्ज़िन-किलाका

1
यह पोस्ट ऐसा लगता है कि यह चाल चलेगा (hi / lo के लिए कस्टम xml विशेषताएँ जोड़ना): stackoverflow.com/a/8090772/156611
एड Sinek

7
यह एक महान समाधान था! मामले में किसी और को Android विकास करने के लिए नया है और एक्सएमएल में एक विस्तारित दृश्य को लागू करने का तरीका नहीं जानता, यह इस तरह दिखता है: <com.example.zengame1.FontFitTextView android:paddingTop="5dip" android:id="@+id/childs_name" android:layout_width="fill_parent" android:layout_height="0dip" android:layout_weight="1" android:layout_gravity="center" android:textSize="@dimen/text_size"/>
केसी मरे

2
अच्छा कार्य! यह भी बटन के साथ काम कर रहा है। float hi = this.getHeight() - this.getPaddingBottom() - this.getPaddingTop();
टेक्स्टव्यू

28

मैंने एक वर्ग लिखा है जो TextView का विस्तार करता है और यह करता है। जैसा कि आप सुझाव देते हैं यह सिर्फ मापक का उपयोग करता है। मूल रूप से इसका अधिकतम पाठ आकार और न्यूनतम पाठ आकार होता है (जिसे बदला जा सकता है) और यह केवल 1 के घटने में उनके बीच के आकार से चलता है जब तक कि यह सबसे बड़ा एक है जो फिट होगा। विशेष रूप से सुरुचिपूर्ण नहीं है, लेकिन मुझे किसी अन्य तरीके का पता नहीं है।

यहाँ कोड है:

import android.content.Context;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.widget.TextView;

public class FontFitTextView extends TextView {

    public FontFitTextView(Context context) {
        super(context);
        initialise();
    }

    public FontFitTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initialise();
    }

    private void initialise() {
        testPaint = new Paint();
        testPaint.set(this.getPaint());
        //max size defaults to the intially specified text size unless it is too small
        maxTextSize = this.getTextSize();
        if (maxTextSize < 11) {
            maxTextSize = 20;
        }
        minTextSize = 10;
    }

    /* Re size the font so the specified text fits in the text box
     * assuming the text box is the specified width.
     */
    private void refitText(String text, int textWidth) { 
        if (textWidth > 0) {
            int availableWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();
            float trySize = maxTextSize;

            testPaint.setTextSize(trySize);
            while ((trySize > minTextSize) && (testPaint.measureText(text) > availableWidth)) {
                trySize -= 1;
                if (trySize <= minTextSize) {
                    trySize = minTextSize;
                    break;
                }
                testPaint.setTextSize(trySize);
            }

            this.setTextSize(trySize);
        }
    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start, final int before, final int after) {
        refitText(text.toString(), this.getWidth());
    }

    @Override
    protected void onSizeChanged (int w, int h, int oldw, int oldh) {
        if (w != oldw) {
            refitText(this.getText().toString(), w);
        }
    }

    //Getters and Setters
    public float getMinTextSize() {
        return minTextSize;
    }

    public void setMinTextSize(int minTextSize) {
        this.minTextSize = minTextSize;
    }

    public float getMaxTextSize() {
        return maxTextSize;
    }

    public void setMaxTextSize(int minTextSize) {
        this.maxTextSize = minTextSize;
    }

    //Attributes
    private Paint testPaint;
    private float minTextSize;
    private float maxTextSize;

}

11
एक द्विआधारी खोज आम तौर पर एक रैखिक खोज की तुलना में तेज़ होगी।
टेड होप

मुझे लगता है कि "onSizeChanged" के बजाय "onLayout" में RefitText करना अधिक उचित होगा
जैकी

क्या आप कृपया मेरी समस्या stackoverflow.com/questions/36265448/…
मुहम्मद

17

यह स्पीडप्लेन हैFontFitTextView , लेकिन यह केवल पाठ आकार को उपयुक्त बनाने के लिए फ़ॉन्ट आकार कम करता है, और इसके फ़ॉन्ट आकार को अन्यथा रखता है। यह ऊंचाई को फिट करने के लिए फ़ॉन्ट आकार में वृद्धि नहीं करता है।

public class FontFitTextView extends TextView {

    // Attributes
    private Paint mTestPaint;
    private float defaultTextSize;

    public FontFitTextView(Context context) {
        super(context);
        initialize();
    }

    public FontFitTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initialize();
    }

    private void initialize() {
        mTestPaint = new Paint();
        mTestPaint.set(this.getPaint());
        defaultTextSize = getTextSize();
    }

    /* Re size the font so the specified text fits in the text box
     * assuming the text box is the specified width.
     */
    private void refitText(String text, int textWidth) {

        if (textWidth <= 0 || text.isEmpty())
            return;

        int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();

        // this is most likely a non-relevant call
        if( targetWidth<=2 )
            return;

        // text already fits with the xml-defined font size?
        mTestPaint.set(this.getPaint());
        mTestPaint.setTextSize(defaultTextSize);
        if(mTestPaint.measureText(text) <= targetWidth) {
            this.setTextSize(TypedValue.COMPLEX_UNIT_PX, defaultTextSize);
            return;
        }

        // adjust text size using binary search for efficiency
        float hi = defaultTextSize;
        float lo = 2;
        final float threshold = 0.5f; // How close we have to be
        while (hi - lo > threshold) {
            float size = (hi + lo) / 2;
            mTestPaint.setTextSize(size);
            if(mTestPaint.measureText(text) >= targetWidth ) 
                hi = size; // too big
            else 
                lo = size; // too small

        }

        // Use lo so that we undershoot rather than overshoot
        this.setTextSize(TypedValue.COMPLEX_UNIT_PX, lo);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
        int height = getMeasuredHeight();
        refitText(this.getText().toString(), parentWidth);
        this.setMeasuredDimension(parentWidth, height);
    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start,
            final int before, final int after) {
        refitText(text.toString(), this.getWidth());
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        if (w != oldw || h != oldh) {
            refitText(this.getText().toString(), w);
        }
    }

}

यहाँ एक उदाहरण है कि इसे xml में कैसे इस्तेमाल किया जा सकता है:

<com.your.package.activity.widget.FontFitTextView
    android:id="@+id/my_id"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="My Text"
    android:textSize="60sp" />

जब तक पाठ चौड़ाई में फिट बैठता है तब तक फ़ॉन्ट का आकार 60sp तक रहेगा। यदि पाठ लंबा है, तो यह फ़ॉन्ट आकार को कम कर देगा। इस स्थिति में, TextViews ऊँचाई भी बदल जाएगी height=wrap_content

यदि आपको कोई कीड़े मिलते हैं, तो बेझिझक संपादित करें।


आपने इसका उपयोग कैसे किया? मैंने एक उदाहरण जोड़ा है कि मैं इसे अपने उत्तर में कैसे उपयोग करता हूं। मैंने विभिन्न एंड्रॉइड वर्जन, एमुलेटर और एडीटी ग्राफिकल लेआउट एडिटर के साथ इसका परीक्षण किया है।
sulai

अनिवार्य रूप से, मैं एक विशिष्ट ऊंचाई निर्दिष्ट नहीं कर रहा था। यदि आप चाहते हैं तो आपका ऑनमार्ट दृश्य को संभालने की अनुमति दे रहा है। मैं एक समाधान के साथ आने में कामयाब रहा, रूटीन में अंतिम पंक्ति को बदलकरthis.setMeasuredDimension(parentWidth, height);
PearsonArtPhoto

1
महान इनपुट, मैंने कोड को सही किया :) अब यह साथ काम करता है match_parentऔर wrap_content
सुलैई

आप खाली स्ट्रिंग लेखन के लिए परीक्षण क्यों करते हैं? "" (एस) केवल s.isEmpty () के बजाय? या s.length () == 0? समझ में नहीं आता कि मैं इन समानता परीक्षणों को कभी-कभी क्यों देख सकता हूं।
जोर्डिड

1
@PratikButani इस ओर इशारा करने के लिए धन्यवाद। के बराबर text.isEmpty()होगा"".equals(text)
सलाई

14

यहाँ मेरा समाधान है जो एमुलेटर और फोन पर काम करता है लेकिन ग्रहण लेआउट संपादक पर बहुत अच्छी तरह से नहीं। यह किलका के कोड से प्रेरित है, लेकिन टेक्स्ट का आकार पेंट से प्राप्त नहीं हुआ है, लेकिन टेक्स्टव्यू को स्वयं कॉल करने से मापा जाता हैmeasure(0, 0)

जावा वर्ग:

public class FontFitTextView extends TextView
{
    private static final float THRESHOLD = 0.5f;

    private enum Mode { Width, Height, Both, None }

    private int minTextSize = 1;
    private int maxTextSize = 1000;

    private Mode mode = Mode.None;
    private boolean inComputation;
    private int widthMeasureSpec;
    private int heightMeasureSpec;

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

    public FontFitTextView(Context context, AttributeSet attrs) {
            this(context, attrs, 0);
    }

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

            TypedArray tAttrs = context.obtainStyledAttributes(attrs, R.styleable.FontFitTextView, defStyle, 0);
            maxTextSize = tAttrs.getDimensionPixelSize(R.styleable.FontFitTextView_maxTextSize, maxTextSize);
            minTextSize = tAttrs.getDimensionPixelSize(R.styleable.FontFitTextView_minTextSize, minTextSize);
            tAttrs.recycle();
    }

    private void resizeText() {
            if (getWidth() <= 0 || getHeight() <= 0)
                    return;
            if(mode == Mode.None)
                    return;

            final int targetWidth = getWidth();
            final int targetHeight = getHeight();

            inComputation = true;
            float higherSize = maxTextSize;
            float lowerSize = minTextSize;
            float textSize = getTextSize();
            while(higherSize - lowerSize > THRESHOLD) {
                    textSize = (higherSize + lowerSize) / 2;
                    if (isTooBig(textSize, targetWidth, targetHeight)) {
                            higherSize = textSize; 
                    } else {
                            lowerSize = textSize;
                    }
            }
            setTextSize(TypedValue.COMPLEX_UNIT_PX, lowerSize);
            measure(widthMeasureSpec, heightMeasureSpec);
            inComputation = false;
    }

    private boolean isTooBig(float textSize, int targetWidth, int targetHeight) {
            setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
            measure(0, 0);
            if(mode == Mode.Both)
                    return getMeasuredWidth() >= targetWidth || getMeasuredHeight() >= targetHeight;
            if(mode == Mode.Width)
                    return getMeasuredWidth() >= targetWidth;
            else
                    return getMeasuredHeight() >= targetHeight;
    }

    private Mode getMode(int widthMeasureSpec, int heightMeasureSpec) {
            int widthMode = MeasureSpec.getMode(widthMeasureSpec);
            int heightMode = MeasureSpec.getMode(heightMeasureSpec);
            if(widthMode == MeasureSpec.EXACTLY && heightMode == MeasureSpec.EXACTLY)
                    return Mode.Both;
            if(widthMode == MeasureSpec.EXACTLY)
                    return Mode.Width;
            if(heightMode == MeasureSpec.EXACTLY)
                    return Mode.Height;
            return Mode.None;
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
            if(!inComputation) {
                    this.widthMeasureSpec = widthMeasureSpec;
                    this.heightMeasureSpec = heightMeasureSpec;
                    mode = getMode(widthMeasureSpec, heightMeasureSpec);
                    resizeText();
            }
    }

    protected void onTextChanged(final CharSequence text, final int start, final int before, final int after) {
            resizeText();
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
            if (w != oldw || h != oldh)
                    resizeText();
    }

    public int getMinTextSize() {
            return minTextSize;
    }

    public void setMinTextSize(int minTextSize) {
            this.minTextSize = minTextSize;
            resizeText();
    }

    public int getMaxTextSize() {
            return maxTextSize;
    }

    public void setMaxTextSize(int maxTextSize) {
            this.maxTextSize = maxTextSize;
            resizeText();
    }
}

XML विशेषता फ़ाइल:

<resources>
    <declare-styleable name="FontFitTextView">
        <attr name="minTextSize" format="dimension" />
        <attr name="maxTextSize" format="dimension" />
    </declare-styleable>
</resources>

इस श्रेणी के नवीनतम संस्करण के लिए मेरे गिथब की जाँच करें । मुझे उम्मीद है कि यह किसी के लिए उपयोगी हो सकता है। यदि बग पाया जाता है या यदि कोड को स्पष्टीकरण की आवश्यकता है, तो गितुब पर एक मुद्दा खोलने के लिए स्वतंत्र महसूस करें।


यह मेरे गैलेक्सी नेक्सस पर प्रीफेक्ट का काम करता है, लेकिन मुझे छोटे स्क्रीन वाले उपकरणों पर समस्या है।
टोनी Ceralva

छोटे स्क्रीन वाले उपकरणों पर आपकी समस्या क्या है?
yDelouis

क्षमा करें, समस्या छोटी स्क्रीन के साथ नहीं है, आपका दृश्य एंड्रॉइड 4.0 के साथ सभी उपकरणों में काम नहीं कर रहा है, एमुलेटर शामिल है। मैंने आपके GitHub में नया मुद्दा खोला
टोनी Ceralva

12

Https://stackoverflow.com/users/234270/speedplane के लिए बहुत-बहुत धन्यवाद । बहुत बढ़िया जवाब!

यहां उनकी प्रतिक्रिया का एक उन्नत संस्करण है जो ऊंचाई का भी ध्यान रखता है और फ़ॉन्ट आकार को सीमित करने के लिए एक मैक्सफॉन्टसाइज़ विशेषता के साथ आता है (मेरे मामले में उपयोगी था, इसलिए मैं इसे साझा करना चाहता था):

package com.<your_package>;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.widget.TextView;


public class FontFitTextView extends TextView
{

    private Paint mTestPaint;
    private float maxFontSize;
    private static final float MAX_FONT_SIZE_DEFAULT_VALUE = 20f;

    public FontFitTextView(Context context)
    {
        super(context);
        initialise(context, null);
    }

    public FontFitTextView(Context context, AttributeSet attributeSet)
    {
        super(context, attributeSet);
        initialise(context, attributeSet);
    }

    public FontFitTextView(Context context, AttributeSet attributeSet, int defStyle)
    {
        super(context, attributeSet, defStyle);
        initialise(context, attributeSet);
    }

    private void initialise(Context context, AttributeSet attributeSet)
    {
        if(attributeSet!=null)
        {
            TypedArray styledAttributes = context.obtainStyledAttributes(attributeSet, R.styleable.FontFitTextView);
            maxFontSize = styledAttributes.getDimension(R.styleable.FontFitTextView_maxFontSize, MAX_FONT_SIZE_DEFAULT_VALUE);
            styledAttributes.recycle();
        }
        else
        {
            maxFontSize = MAX_FONT_SIZE_DEFAULT_VALUE;
        }

        mTestPaint = new Paint();
        mTestPaint.set(this.getPaint());
        //max size defaults to the initially specified text size unless it is too small
    }

    /* Re size the font so the specified text fits in the text box
     * assuming the text box is the specified width.
     */
    private void refitText(String text, int textWidth, int textHeight)
    {
        if (textWidth <= 0)
            return;
        int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();
        int targetHeight = textHeight - this.getPaddingTop() - this.getPaddingBottom();
        float hi = maxFontSize;
        float lo = 2;
//      final float threshold = 0.5f; // How close we have to be
        final float threshold = 1f; // How close we have to be

        mTestPaint.set(this.getPaint());

        Rect bounds = new Rect();

        while ((hi - lo) > threshold)
        {
            float size = (hi + lo) / 2;
            mTestPaint.setTextSize(size);

            mTestPaint.getTextBounds(text, 0, text.length(), bounds);

            if (bounds.width() >= targetWidth || bounds.height() >= targetHeight)
                hi = size; // too big
            else
                lo = size; // too small

//          if (mTestPaint.measureText(text) >= targetWidth)
//              hi = size; // too big
//          else
//              lo = size; // too small
        }
        // Use lo so that we undershoot rather than overshoot
        this.setTextSize(TypedValue.COMPLEX_UNIT_PX, lo);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
    {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
        int height = getMeasuredHeight();
        refitText(this.getText().toString(), parentWidth, height);
        this.setMeasuredDimension(parentWidth, height);
    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start, final int before, final int after)
    {
        refitText(text.toString(), this.getWidth(), this.getHeight());
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh)
    {
        if (w != oldw)
        {
            refitText(this.getText().toString(), w, h);
        }
    }
}

संवाददाता /res/values/attr.xml फ़ाइल:

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

    <declare-styleable name="FontFitTextView">
        <attr name="maxFontSize" format="dimension" />
    </declare-styleable>

</resources>

उदाहरण:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:res-auto="http://schemas.android.com/apk/res-auto"
    android:id="@+id/home_Layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    tools:ignore="ContentDescription" >
...

 <com.<your_package>.FontFitTextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:singleLine="true"
                    android:text="Sample Text"
                    android:textSize="28sp"
                    res-auto:maxFontSize="35sp"/>

...
</RelativeLayout>

नई maxFontSizeविशेषता का उपयोग करने के लिए , xmlns:res-auto="http://schemas.android.com/apk/res-auto"उदाहरण के लिए शो में जोड़ना न भूलें ।


क्षमा करें, लेकिन यह अभी भी सभी मामलों पर काम नहीं करता है। मुझे यह भी लगता है कि यह बहु लाइनों को सही ढंग से नहीं संभालता है।
एंड्रॉयड डेवलपर

ओह .. क्या आप मुझे कोई ऐसा केस दे सकते हैं जिसके लिए यह काम न करे? (मल्टी लाइन समर्थित नहीं है, आप सही हैं)
पास्कल

कई मामलों। मैंने यह साबित करने के लिए एक यादृच्छिक परीक्षक बनाया है कि यह सही है। यहां एक नमूना है: दृश्य की चौड़ाई: 317px, ऊंचाई: 137px, पाठ: "q7Lr"। जो मैं देख रहा हूं वह यह है: tinypic.com/view.php?pic=2dv5yf9&s=6 । यहाँ नमूना परियोजना मैंने बनाई है: Mega.co.nz/… । मुझे लगता है कि इस तरह के दृश्य को मल्टी लाइन को संभालना चाहिए, फोंट के किसी भी आकार का समर्थन करना चाहिए, ऊंचाई को संभालना चाहिए और न कि केवल चौड़ाई को ... दुःख की बात है कि जो भी सैंपल मुझे मिला है उनमें से किसी ने भी अच्छा काम नहीं किया है।
एंड्रॉइड डेवलपर

ठीक है, निश्चित रूप से एक पूर्ण समाधान नहीं है। माफ़ करना। समय के लिए इसे सुधारने का कोई समय नहीं .. यदि आप इसे सुधार सकते हैं, तो अपना समाधान पोस्ट करने में संकोच न करें।
पास्कल

1
मैंने एक नया धागा बनाया है जो मेरे परीक्षणों को दिखाता है, उम्मीद करता है कि कोई व्यक्ति एक अच्छा समाधान बनाने में सक्षम होगा: stackoverflow.com/questions/16017165/…
Android डेवलपर

7

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

ऑटो स्केल TextView पाठ सीमा के भीतर फिट करने के लिए


6

अब आप बिना किसी थर्ड पार्टी लाइब्रेरी या विजेट के ऐसा कर सकते हैं। यह एपीआई स्तर 26 में टेक्स्ट व्यू में बनाया गया है। android:autoSizeTextType="uniform"अपने को जोड़ें TextViewऔर इसे ऊंचाई सेट करें। बस इतना ही।

https://developer.android.com/guide/topics/ui/look-and-feel/autosizing-textview.html

<?xml version="1.0" encoding="utf-8"?>
<TextView
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:autoSizeTextType="uniform" />

आप TextViewCompatसंगतता के लिए भी उपयोग कर सकते हैं ।


5

OnMeasure के लिए थोड़ा संशोधन:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
    int parentHeight = MeasureSpec.getSize(heightMeasureSpec);
    refitText(this.getText().toString(), parentWidth);
    this.setMeasuredDimension(parentWidth, parentHeight);
}

और रिफाइनरी पर बाइनरी सर्च:

private void refitText(String text, int textWidth) 
{ 
    if (textWidth > 0) 
    {
        int availableWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();         
        int trySize = (int)maxTextSize;
        int increment = ~( trySize - (int)minTextSize ) / 2;

        testPaint.setTextSize(trySize);
        while ((trySize > minTextSize) && (testPaint.measureText(text) > availableWidth)) 
        {
            trySize += increment;
            increment = ( increment == 0 ) ? -1 : ~increment / 2;
            if (trySize <= minTextSize) 
            {
                trySize = (int)minTextSize;
                break;
            }
            testPaint.setTextSize(trySize);
        }

        this.setTextSize( TypedValue.COMPLEX_UNIT_PX, trySize);
    }
}

3
एक द्विआधारी खोज के बजाय, एक साधारण स्केलिंग बहुत अच्छी तरह से काम करती है: trySize *= availableWidth / measured_width(फिर minTextSize पर क्लैंप किया गया)।
टेड हॉप

5

मुझे मेरे लिए अच्छी तरह से काम करने के लिए निम्नलिखित मिला। यह ऊंचाई और चौड़ाई दोनों के लिए लूप और खाता नहीं है। ध्यान दें कि setTextSize को व्यू पर कॉल करते समय पीएक्स यूनिट को निर्दिष्ट करना महत्वपूर्ण है। इसके लिए पिछली पोस्ट में टिप के लिए धन्यवाद!

Paint paint = adjustTextSize(getPaint(), numChars, maxWidth, maxHeight);
setTextSize(TypedValue.COMPLEX_UNIT_PX,paint.getTextSize());

यहाँ मैं दिनचर्या का उपयोग कर रहा हूँ, दृश्य से getPaint () में गुजर रहा है। वास्तविक स्ट्रिंग से स्वतंत्र चौड़ाई का अनुमान लगाने के लिए 'वाइड' वर्ण के साथ 10 वर्ण स्ट्रिंग का उपयोग किया जाता है।

private static final String text10="OOOOOOOOOO";
public static Paint adjustTextSize(Paint paint, int numCharacters, int widthPixels, int heightPixels) {
    float width = paint.measureText(text10)*numCharacters/text10.length();
    float newSize = (int)((widthPixels/width)*paint.getTextSize());
    paint.setTextSize(newSize);

    // remeasure with font size near our desired result
    width = paint.measureText(text10)*numCharacters/text10.length();
    newSize = (int)((widthPixels/width)*paint.getTextSize());
    paint.setTextSize(newSize);

    // Check height constraints
    FontMetricsInt metrics = paint.getFontMetricsInt();
    float textHeight = metrics.descent-metrics.ascent;
    if (textHeight > heightPixels) {
        newSize = (int)(newSize * (heightPixels/textHeight));
        paint.setTextSize(newSize);
    }

    return paint;
}

आप इसे एक लेआउट xml में कैसे शामिल करते हैं?
एलिकएल्ज़िन-किलाका

यह कोड किसी मौजूदा आकार के क्षेत्र में एक मौजूदा दृश्य के भीतर पाठ रखने के लिए उपयोगी है या आप TextView से अपना स्वयं का व्युत्पन्न वर्ग बना सकते हैं और अन्य पोस्ट में दिखाए अनुसार ऑनराइड को ओवरराइड कर सकते हैं। अपने आप में यह एक लेआउट में इस्तेमाल नहीं किया जा सकता है।
ग्लेन

यह सुनिश्चित कर लें कि ड्रा होने के बाद आप दृश्य के आयामों की जाँच करें । OnCreate () के दौरान ऐसा करना बहुत जल्दी है। मैंने यह सुनिश्चित करने के लिए ViewTreeObserver का उपयोग किया कि माप सही समय पर लिए गए थे।
स्कॉट बिग्स

4

संशोधन के साथ काम करता है

आपको पाठ दृश्य आकार को इस तरह सेट करने की आवश्यकता है क्योंकि अन्यथा setTextSize मान एसपी इकाइयों में है:

setTextSize(TypedValue.COMPLEX_UNIT_PX, trySize);

और आपको इस कोड को स्पष्ट रूप से जोड़ना होगा।

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
    int parentHeight = MeasureSpec.getSize(heightMeasureSpec);
    refitText(this.getText().toString(), parentWidth);
}

4

app:autoSizeTextType="uniform"पिछड़े संगतता के लिए उपयोग करें क्योंकि android:autoSizeTextType="uniform"केवल एपीआई स्तर 26 और उच्चतर में काम करते हैं।


2

मैंने उपर दिए गए डन्नी समाधान की भिन्नता का उपयोग किया, लेकिन वह विशेष कोड मेरे लिए काम नहीं करता था। विशेष रूप से, जब पेंट ऑब्जेक्ट का उपयोग दृश्य के पेंट ऑब्जेक्ट के लक्षण सेट करने के लिए किया जाता है, और फिर कॉलिंग मापक () को कॉल किया जाता है, तो यह दृश्य के पेंट ऑब्जेक्ट को सीधे कॉल करने के समान मान वापस नहीं करता है। शायद मेरे विचारों को स्थापित करने के तरीके में कुछ अंतर हैं जो व्यवहार को अलग बनाते हैं।

मेरा समाधान सीधे दृश्य के पेंट का उपयोग करना था, भले ही कई बार दृश्य के लिए फ़ॉन्ट आकार बदलने में कुछ प्रदर्शन दंड हो सकते हैं।


2

मैं स्पीडप्लेन से उत्कृष्ट समाधान में सुधार पर काम कर रहा हूं, और इसके साथ आया हूं। यह मार्जिन को सेट करने सहित ऊंचाई का प्रबंधन करता है, ताकि पाठ को लंबवत रूप से सही ढंग से केंद्रित किया जाए।

यह चौड़ाई प्राप्त करने के लिए समान फ़ंक्शन का उपयोग करता है, क्योंकि यह सबसे अच्छा काम करता है, लेकिन यह ऊंचाई प्राप्त करने के लिए एक अलग फ़ंक्शन का उपयोग करता है, क्योंकि ऊंचाई कहीं भी प्रदान नहीं की गई है। कुछ सुधार हैं जिन्हें करने की आवश्यकता है, लेकिन मैंने आंख को प्रसन्न करते हुए, ऐसा करने का एक तरीका निकाला।

import android.content.Context;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.widget.TextView;

public class FontFitTextView extends TextView {

    public FontFitTextView(Context context) {
        super(context);
        initialize();
    }

    public FontFitTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initialize();
    }

    private void initialize() {
        mTestPaint = new Paint();
        mTestPaint.set(this.getPaint());

        //max size defaults to the initially specified text size unless it is too small
    }

    /* Re size the font so the specified text fits in the text box
     * assuming the text box is the specified width.
     */
    private void refitText(String text, int textWidth,int textHeight) 
    { 
        if (textWidth <= 0)
            return;
        int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();
        int targetHeight = textHeight - this.getPaddingTop() - this.getPaddingBottom();
        float hi = Math.min(targetHeight,100);
        float lo = 2;
        final float threshold = 0.5f; // How close we have to be

        Rect bounds = new Rect();

        mTestPaint.set(this.getPaint());

        while((hi - lo) > threshold) {
            float size = (hi+lo)/2;
            mTestPaint.setTextSize(size);
            mTestPaint.getTextBounds(text, 0, text.length(), bounds);
            if((mTestPaint.measureText(text)) >= targetWidth || (1+(2*(size+(float)bounds.top)-bounds.bottom)) >=targetHeight) 
                hi = size; // too big
            else
                lo = size; // too small
        }
        // Use lo so that we undershoot rather than overshoot
        this.setTextSize(TypedValue.COMPLEX_UNIT_PX,(float) lo);

    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
    {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
        int parentHeight = MeasureSpec.getSize(heightMeasureSpec);
        int height = getMeasuredHeight();
        refitText(this.getText().toString(), parentWidth,height);
        this.setMeasuredDimension(parentWidth, height);
    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start, final int before, final int after) {
        refitText(text.toString(), this.getWidth(),this.getHeight());
    }

    @Override
    protected void onSizeChanged (int w, int h, int oldw, int oldh) {

        if (w != oldw) {
            refitText(this.getText().toString(), w,h);
        }
    }

    //Attributes
    private Paint mTestPaint;
}


1

जब तक मुझे यह लाइब्रेरी नहीं मिली, तब तक मेरी परियोजनाओं में मुझे यह दर्द था:

compile 'me.grantland:autofittextview:0.2.+'

आपको बस अपनी जरूरतों के हिसाब से xml जोड़ना है और यह पूरा हो गया है। उदाहरण के लिए:

<me.grantland.widget.AutofitTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:maxLines="2"
android:textSize="40sp"
autofit:minTextSize="16sp"
/>

0

पिछले पोस्टर से प्रेरित होकर मैं अपना समाधान साझा करना चाहता था। यह एक स्केल फैक्टर के साथ काम करता है जो पिछले स्थान आकार पर लागू होता है ताकि यह उपलब्ध स्थान को फिट कर सके। इसके अलावा TextViews onDraw विधि के अनपेक्षित व्यवहार को रोकने के लिए, यह केवल पाठ को अपने आप खींचता है।

public class FontFitTextView extends TextView {

    // How much of the available space should be used in percent.
    private static final float MARGINHEIGHT = 0.8f;
    private static final float MARGINWIDTH = 0.8f;

    private Paint paint;
    private int viewWidth;
    private int viewHeight;
    private float textHeight;
    private float textWidth;

    public FontFitTextView(Context c) {
        this(c, null);
    }

    public FontFitTextView(Context c, AttributeSet attrs) {
        super(c, attrs);
        initComponent();
    }

    // Default constructor override
    public FontFitTextView(Context c, AttributeSet attrs, int defStyle) {
        super(c, attrs, defStyle);
        initComponent();
    }

    private void initComponent() {
        paint = new Paint();
        paint.setTextSize(30);
        paint.setTextAlign(Align.CENTER);
        paint.setAntiAlias(true);
    }

    public void setFontColor(int c) {
        paint.setColor(c);
    }

    private void calcTextSize(String s, Canvas c) {

        float availableHeight = viewHeight;
        float availableWidth = viewWidth;

        // This value scales the old font up or down to match the available
        // space.
        float scale = 1.0f;

        // Rectangle for measuring the text dimensions
        Rect rect = new Rect();
        float oldFontSize = paint.getTextSize();

        // Calculate the space used with old font size
        paint.getTextBounds(s, 0, s.length(), rect);
        textWidth = rect.width();
        textHeight = rect.height();

        // find scale-value to fit the text horizontally
        float scaleWidth = 1f;
        if (textWidth > 0.0f) {
            scaleWidth = (availableWidth) / textWidth * MARGINWIDTH;
        }

        // find scale-value to fit the text vertically
        float scaleHeight = 1f;
        if (textHeight > 0.0f) {
            scaleHeight = (availableHeight) / textHeight * MARGINHEIGHT;
        }

        // We are always limited by the smaller one
        if (scaleWidth < scaleHeight) {
            scale = scaleWidth;
        } else {
            scale = scaleHeight;
        }

        // We apply the scale to the old font size to make it bigger or smaller
        float newFontSize = (oldFontSize * scale);
        paint.setTextSize(newFontSize);
    }

    /**
     * Calculates the origin on the Y-Axis (width) for the text in this view.
     * 
     * @return
     */
    private float calcStartDrawingPosX() {
        float left = getMeasuredWidth();
        float centerY = left - (viewWidth / 2);
        return centerY;
    }

    /**
     * Calculates the origin on the Y-Axis (height) for the text in this view.
     * 
     * @return
     */
    private float calcStartDrawingPosY() {
        float bottom = getMeasuredHeight();
        // The paint only centers horizontally, origin on the Y-Axis stays at
        // the bottom, thus we have to lift the origin additionally by the
        // height of the font.
        float centerX = bottom - (viewHeight / 2) + (textHeight / 2);
        return centerX;
    }

    @Override
    protected void onDraw(Canvas canvas) {
        String text = getText().toString();
        if (text.length() > 0) {
            calcTextSize(text, canvas);
            canvas.drawText(text, calcStartDrawingPosX(),
                    calcStartDrawingPosY(), paint);
        }
    };

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        viewWidth = w;
        viewHeight = h;
        super.onSizeChanged(w, h, oldw, oldh);
    }
}

0
/* get your context */
Context c = getActivity().getApplicationContext();

LinearLayout l = new LinearLayout(c);
l.setOrientation(LinearLayout.VERTICAL);
LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 0);

l.setLayoutParams(params);
l.setBackgroundResource(R.drawable.border);

TextView tv=new TextView(c);
tv.setText(" your text here");

/* set typeface if needed */
Typeface tf = Typeface.createFromAsset(c.getAssets(),"fonts/VERDANA.TTF");  
tv.setTypeface(tf);

// LayoutParams lp = new LayoutParams();

tv.setTextColor(Color.parseColor("#282828"));

tv.setGravity(Gravity.CENTER | Gravity.BOTTOM);
//  tv.setLayoutParams(lp);

tv.setTextSize(20);
l.addView(tv);

return l;

1
बस अपने कोड को पढ़ने से, मुझे नहीं लगता कि यह काम करेगा। याद रखें, प्रश्न दृश्य में फिट होने के लिए पाठ दृश्य के फ़ॉन्ट आकार को स्वचालित रूप से समायोजित करने के बारे में था। आपने एक निश्चित फ़ॉन्ट आकार निर्धारित किया है।
सुलाय

0

यह एक सरल उपाय होना चाहिए:

public void correctWidth(TextView textView, int desiredWidth)
{
    Paint paint = new Paint();
    Rect bounds = new Rect();

    paint.setTypeface(textView.getTypeface());
    float textSize = textView.getTextSize();
    paint.setTextSize(textSize);
    String text = textView.getText().toString();
    paint.getTextBounds(text, 0, text.length(), bounds);

    while (bounds.width() > desiredWidth)
    {
        textSize--;
        paint.setTextSize(textSize);
        paint.getTextBounds(text, 0, text.length(), bounds);
    }

    textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
}

0

नीचे दिए गए कोड के साथ TextView बढ़ाएँ और ऑनड्राइव को ओवरराइड करें। यह पाठ पहलू अनुपात को बनाए रखेगा लेकिन इसे स्थान भरने के लिए आकार देगा। यदि आवश्यक हो तो आप आसानी से कोड को संशोधित कर सकते हैं।

  @Override
  protected void onDraw(@NonNull Canvas canvas) {
    TextPaint textPaint = getPaint();
    textPaint.setColor(getCurrentTextColor());
    textPaint.setTextAlign(Paint.Align.CENTER);
    textPaint.drawableState = getDrawableState();

    String text = getText().toString();
    float desiredWidth = getMeasuredWidth() - getPaddingLeft() - getPaddingRight() - 2;
    float desiredHeight = getMeasuredHeight() - getPaddingTop() - getPaddingBottom() - 2;
    float textSize = textPaint.getTextSize();

    for (int i = 0; i < 10; i++) {
      textPaint.getTextBounds(text, 0, text.length(), rect);
      float width = rect.width();
      float height = rect.height();

      float deltaWidth = width - desiredWidth;
      float deltaHeight = height - desiredHeight;

      boolean fitsWidth = deltaWidth <= 0;
      boolean fitsHeight = deltaHeight <= 0;

      if ((fitsWidth && Math.abs(deltaHeight) < 1.0)
          || (fitsHeight && Math.abs(deltaWidth) < 1.0)) {
        // close enough
        break;
      }

      float adjustX = desiredWidth / width;
      float adjustY = desiredHeight / height;

      textSize = textSize * (adjustY < adjustX ? adjustY : adjustX);

      // adjust text size
      textPaint.setTextSize(textSize);
    }
    float x = desiredWidth / 2f;
    float y = desiredHeight / 2f - rect.top - rect.height() / 2f;
    canvas.drawText(text, x, y, textPaint);
  }

0

मैंने एक छोटी सहायक कक्षा लिखी थी जो एक निश्चित चौड़ाई के भीतर एक टेक्स्टव्यू को फिट बनाता है और यदि न्यूनतम टेक्स्ट को प्राप्त नहीं किया जा सकता है, तो अंत में "..." को जोड़ता है।

ध्यान रखें कि यह केवल पाठ को तब तक छोटा बनाता है जब तक कि यह फिट न हो जाए या न्यूनतम पाठ आकार तक न पहुंच जाए। बड़े आकारों के साथ परीक्षण करने के लिए, मदद विधि को कॉल करने से पहले एक बड़ी संख्या में ग्रंथों को सेट करें।

यह पिक्सेल लेता है, इसलिए यदि आप डिमेन से मूल्यों का उपयोग कर रहे हैं, तो आप इसे इस तरह से कॉल कर सकते हैं:


float minTextSizePx = getResources().getDimensionPixelSize(R.dimen.min_text_size);
float maxTextWidthPx = getResources().getDimensionPixelSize(R.dimen.max_text_width);
WidgetUtils.fitText(textView, text, minTextSizePx, maxTextWidthPx);

यह वह वर्ग है जिसका मैं उपयोग करता हूं:


public class WidgetUtils {

    public static void fitText(TextView textView, String text, float minTextSizePx, float maxWidthPx) {
        textView.setEllipsize(null);
        int size = (int)textView.getTextSize();
        while (true) {
            Rect bounds = new Rect();
            Paint textPaint = textView.getPaint();
            textPaint.getTextBounds(text, 0, text.length(), bounds);
            if(bounds.width() < maxWidthPx){
                break;
            }
            if (size <= minTextSizePx) {
                textView.setEllipsize(TextUtils.TruncateAt.END);
                break;
            }
            size -= 1;
            textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, size);
        }
    }
}

क्या यह पाठ की कई पंक्तियों का समर्थन करता है?
रॉयमूनसन

0

यदि ऑल क्रेप्स की तरह एक विरूपण सेट किया जाता है, तो स्पीडप्लेन का दृष्टिकोण छोटी गाड़ी है। मैंने इसे ठीक कर लिया, जिसके परिणामस्वरूप निम्न कोड (क्षमा करें, मेरी प्रतिष्ठा मुझे स्पीडप्लेन के समाधान के लिए एक टिप्पणी के रूप में इसे जोड़ने की अनुमति नहीं देती है):

import android.content.Context;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.widget.TextView;

public class FontFitTextView extends TextView {

    public FontFitTextView(Context context) {
        super(context);
        initialise();
    }

    public FontFitTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initialise();
    }

    private void initialise() {
        mTestPaint = new Paint();
        mTestPaint.set(this.getPaint());
        //max size defaults to the initially specified text size unless it is too small
    }

    /* Re size the font so the specified text fits in the text box
     * assuming the text box is the specified width.
     */
    private void refitText(String text, int textWidth) 
    { 
        if (getTransformationMethod() != null) {
            text = getTransformationMethod().getTransformation(text, this).toString();
        }

        if (textWidth <= 0)
            return;
        int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();
        float hi = 100;
        float lo = 2;
        final float threshold = 0.5f; // How close we have to be

        mTestPaint.set(this.getPaint());

        while((hi - lo) > threshold) {
            float size = (hi+lo)/2;
            if(mTestPaint.measureText(text) >= targetWidth) 
                hi = size; // too big
            else
                lo = size; // too small
        }
        // Use lo so that we undershoot rather than overshoot
        this.setTextSize(TypedValue.COMPLEX_UNIT_PX, lo);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
    {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
        int height = getMeasuredHeight();
        refitText(this.getText().toString(), parentWidth);
        this.setMeasuredDimension(parentWidth, height);
    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start, final int before, final int after) {
        refitText(text.toString(), this.getWidth());
    }

    @Override
    protected void onSizeChanged (int w, int h, int oldw, int oldh) {
        if (w != oldw) {
            refitText(this.getText().toString(), w);
      }
    }

    //Attributes
    private Paint mTestPaint;
}

0

मुझे नहीं पता कि यह सही तरीका है या इसका काम नहीं कर रहा है ... अपना विचार रखें और OnGlobalLayoutListener () की जांच करें और टेक्स्टव्यू लिंकेाउंट प्राप्त करें और फिर टेक्स्ट सेट करें।

 yourView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            if (textView.getLineCount()>=3) {
                textView.setTextSize(20);
            }else{
                //add somthing
              }
        }
    });

इसका बहुत ही सरल कुछ लाइन कोड ..

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