Android के लिए ऑटो-फिट टेक्स्ट व्यू


231

पृष्ठभूमि

कई बार हमें टेक्स्ट व्यू के फॉन्ट को ऑटो करके उसे दी गई सीमाओं तक पहुँचाने की आवश्यकता होती है।

समस्या

दुख की बात है, भले ही वहाँ कई धागे और पोस्ट (और सुझाव दिया समाधान) (उदाहरण के लिए इस समस्या के बारे में बात कर रहे हैं यहाँ , यहाँ और यहाँ ), उनमें से कोई भी वास्तव में अच्छी तरह से काम करते हैं।

इसीलिए, मैंने उनमें से प्रत्येक का परीक्षण तब तक करने का निर्णय लिया है जब तक कि मैं वास्तविक सौदा नहीं पा लेता।

मुझे लगता है कि इस तरह के textView से आवश्यकताएँ होनी चाहिए:

  1. किसी भी फ़ॉन्ट, टाइपफेस, शैली और वर्णों के सेट का उपयोग करने की अनुमति देनी चाहिए।

  2. चौड़ाई और ऊंचाई दोनों को संभालना चाहिए

  3. कोई छंटनी नहीं है जब तक कि पाठ सीमा के कारण फिट नहीं हो सकता, हमने इसे दिया है (उदाहरण: बहुत लंबा पाठ, बहुत छोटा उपलब्ध आकार)। हालाँकि, यदि हम चाहें तो क्षैतिज / ऊर्ध्वाधर स्क्रॉलबार के लिए अनुरोध कर सकते हैं, बस उन मामलों के लिए।

  4. मल्टी-लाइन या सिंगल-लाइन की अनुमति देनी चाहिए। बहु-पंक्ति के मामले में, अधिकतम और न्यूनतम रेखाएं अनुमति दें।

  5. गणना में धीमा नहीं होना चाहिए। सबसे अच्छा आकार खोजने के लिए एक लूप का उपयोग करना? कम से कम इसे ऑप्टिमाइज़ करें और हर बार अपने नमूने को 1 से बढ़ाएँ नहीं।

  6. बहु-रेखा के मामले में, अधिक लाइनों का आकार बदलने या उपयोग करने की अनुमति देना चाहिए, और / या "\ n" वर्ण का उपयोग करके लाइनों को स्वयं चुनने की अनुमति दें।

मैंने क्या कोशिश की है

मैंने बहुत सारे नमूनों की कोशिश की है (उन लिंक्स में, जिनके बारे में मैंने लिखा है), और मैंने मामलों को संभालने के लिए उन्हें संशोधित करने की भी कोशिश की है, मैंने इसके बारे में बात की है, लेकिन कोई भी वास्तव में काम नहीं करता है।

मैंने एक नमूना परियोजना बनाई है जो मुझे पाठ दृश्य ऑटो-फिट करने के लिए नेत्रहीन देखने की अनुमति देती है।

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

यहाँ कोड है ( यहाँ भी उपलब्ध है ):

फ़ाइल res/layout/activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
  android:layout_height="match_parent" tools:context=".MainActivity">
  <Button android:id="@+id/button1" android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true" android:text="Button" />
  <FrameLayout android:layout_width="match_parent"
    android:layout_height="wrap_content" android:layout_above="@+id/button1"
    android:layout_alignParentLeft="true" android:background="#ffff0000"
    android:layout_alignParentRight="true" android:id="@+id/container"
    android:layout_alignParentTop="true" />

</RelativeLayout>

फ़ाइल src/.../MainActivity.java

public class MainActivity extends Activity
  {
  private final Random        _random            =new Random();
  private static final String ALLOWED_CHARACTERS ="qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890";

  @Override
  protected void onCreate(final Bundle savedInstanceState)
    {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final ViewGroup container=(ViewGroup)findViewById(R.id.container);
    findViewById(R.id.button1).setOnClickListener(new OnClickListener()
      {
        @Override
        public void onClick(final View v)
          {
          container.removeAllViews();
          final int maxWidth=container.getWidth();
          final int maxHeight=container.getHeight();
          final FontFitTextView fontFitTextView=new FontFitTextView(MainActivity.this);
          final int width=_random.nextInt(maxWidth)+1;
          final int height=_random.nextInt(maxHeight)+1;
          fontFitTextView.setLayoutParams(new LayoutParams(width,height));
          fontFitTextView.setSingleLine();
          fontFitTextView.setBackgroundColor(0xff00ff00);
          final String text=getRandomText();
          fontFitTextView.setText(text);
          container.addView(fontFitTextView);
          Log.d("DEBUG","width:"+width+" height:"+height+" text:"+text);
          }
      });
    }

  private String getRandomText()
    {
    final int textLength=_random.nextInt(20)+1;
    final StringBuilder builder=new StringBuilder();
    for(int i=0;i<textLength;++i)
      builder.append(ALLOWED_CHARACTERS.charAt(_random.nextInt(ALLOWED_CHARACTERS.length())));
    return builder.toString();
    }
  }

प्रश्न

क्या किसी को इस सामान्य समस्या के समाधान का पता है जो वास्तव में काम करता है?

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


गिटहब परियोजना

के बाद से इस तरह के एक महत्वपूर्ण TextView है, मैं, एक पुस्तकालय प्रकाशित करने के लिए ताकि सभी को आसानी से इसका इस्तेमाल करते हैं, और यह करने के लिए योगदान कर सकता है, तय कर लिया है यहाँ


क्या आपने यह कोशिश की है? androidviews.net/2012/12/autoscale-textview
थरकबाद

@ थ्रकबाद यह उन लिंक्स में से एक है जिसका मैंने उल्लेख किया है। यह भी परीक्षा पास नहीं करता है।
Android डेवलपर

क्षमा करें, मुझे आखिरी उदाहरण किसी भी तरह याद
आया

हां, कृपया मुझ पर विश्वास करें, मैंने बहुत सारे नमूने लेने की कोशिश की है और मैंने उन्हें उन मुद्दों को ठीक करने के लिए संशोधित करने की भी कोशिश की है जो मुझे मिल गए हैं, लेकिन कभी सफल नहीं हुए। यदि आपको लगता है कि आपको लगता है कि कुछ काम हो सकता है, तो कृपया इसका परीक्षण करें। मैंने इसके लिए एक नमूना कोड पोस्ट किया है।
Android डेवलपर

1
@ क्योंकि यह उन पोस्टों में से एक है जो मैंने पहले ही पढ़ी हैं, और मैंने सभी कोड नमूनों का परीक्षण किया है। मुझे भी लगता है कि आपने डबल पोस्ट किया है।
एंड्रॉइड डेवलपर

जवाबों:


147

यहां मार्टिन के सरल समाधान के लिए धन्यवाद , इस कोड का भी ध्यान रखा गया हैandroid:drawableLeft , android:drawableRight, android:drawableTopऔर android:drawableBottomटैग।


यहाँ मेरा उत्तर आपको खुश कर देना चाहिए ऑटो स्केल टेक्स्टव्यू टेक्स्ट को फिट टू बाउंड्स

मैंने आपका परीक्षण मामला संशोधित कर दिया है:

@Override
protected void onCreate(final Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final ViewGroup container = (ViewGroup) findViewById(R.id.container);
    findViewById(R.id.button1).setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(final View v) {
            container.removeAllViews();
            final int maxWidth = container.getWidth();
            final int maxHeight = container.getHeight();
            final AutoResizeTextView fontFitTextView = new AutoResizeTextView(MainActivity.this);
            final int width = _random.nextInt(maxWidth) + 1;
            final int height = _random.nextInt(maxHeight) + 1;
            fontFitTextView.setLayoutParams(new FrameLayout.LayoutParams(
                    width, height));
            int maxLines = _random.nextInt(4) + 1;
            fontFitTextView.setMaxLines(maxLines);
            fontFitTextView.setTextSize(500);// max size
            fontFitTextView.enableSizeCache(false);
            fontFitTextView.setBackgroundColor(0xff00ff00);
            final String text = getRandomText();
            fontFitTextView.setText(text);
            container.addView(fontFitTextView);
            Log.d("DEBUG", "width:" + width + " height:" + height
                    + " text:" + text + " maxLines:" + maxLines);
        }
    });
}

मैं यहाँ पर प्रति के अनुसार कोड पोस्ट कर रहा हूँ Android डेवलपर के अनुरोध :

अंतिम प्रभाव:

यहां छवि विवरण दर्ज करें

नमूना लेआउट फ़ाइल:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp" >

<com.vj.widgets.AutoResizeTextView
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:ellipsize="none"
    android:maxLines="2"
    android:text="Auto Resized Text, max 2 lines"
    android:textSize="100sp" /> <!-- maximum size -->

<com.vj.widgets.AutoResizeTextView
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:ellipsize="none"
    android:gravity="center"
    android:maxLines="1"
    android:text="Auto Resized Text, max 1 line"
    android:textSize="100sp" /> <!-- maximum size -->

<com.vj.widgets.AutoResizeTextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Auto Resized Text"
    android:textSize="500sp" /> <!-- maximum size -->

</LinearLayout>

और जावा कोड:

import android.annotation.TargetApi;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.RectF;
import android.os.Build;
import android.text.Layout.Alignment;
import android.text.StaticLayout;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.util.SparseIntArray;
import android.util.TypedValue;
import android.widget.TextView;

public class AutoResizeTextView extends TextView {
    private interface SizeTester {
        /**
         *
         * @param suggestedSize
         *            Size of text to be tested
         * @param availableSpace
         *            available space in which text must fit
         * @return an integer < 0 if after applying {@code suggestedSize} to
         *         text, it takes less space than {@code availableSpace}, > 0
         *         otherwise
         */
        public int onTestSize(int suggestedSize, RectF availableSpace);
    }

    private RectF mTextRect = new RectF();

    private RectF mAvailableSpaceRect;

    private SparseIntArray mTextCachedSizes;

    private TextPaint mPaint;

    private float mMaxTextSize;

    private float mSpacingMult = 1.0f;

    private float mSpacingAdd = 0.0f;

    private float mMinTextSize = 20;

    private int mWidthLimit;

    private static final int NO_LINE_LIMIT = -1;
    private int mMaxLines;

    private boolean mEnableSizeCache = true;
    private boolean mInitializedDimens;

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

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

    public AutoResizeTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        initialize();
    }

    private void initialize() {
        mPaint = new TextPaint(getPaint());
        mMaxTextSize = getTextSize();
        mAvailableSpaceRect = new RectF();
        mTextCachedSizes = new SparseIntArray();
        if (mMaxLines == 0) {
            // no value was assigned during construction
            mMaxLines = NO_LINE_LIMIT;
        }
    }

    @Override
    public void setTextSize(float size) {
        mMaxTextSize = size;
        mTextCachedSizes.clear();
        adjustTextSize();
    }

    @Override
    public void setMaxLines(int maxlines) {
        super.setMaxLines(maxlines);
        mMaxLines = maxlines;
        adjustTextSize();
    }

    public int getMaxLines() {
        return mMaxLines;
    }

    @Override
    public void setSingleLine() {
        super.setSingleLine();
        mMaxLines = 1;
        adjustTextSize();
    }

    @Override
    public void setSingleLine(boolean singleLine) {
        super.setSingleLine(singleLine);
        if (singleLine) {
            mMaxLines = 1;
        } else {
            mMaxLines = NO_LINE_LIMIT;
        }
        adjustTextSize();
    }

    @Override
    public void setLines(int lines) {
        super.setLines(lines);
        mMaxLines = lines;
        adjustTextSize();
    }

    @Override
    public void setTextSize(int unit, float size) {
        Context c = getContext();
        Resources r;

        if (c == null)
            r = Resources.getSystem();
        else
            r = c.getResources();
        mMaxTextSize = TypedValue.applyDimension(unit, size,
                r.getDisplayMetrics());
        mTextCachedSizes.clear();
        adjustTextSize();
    }

    @Override
    public void setLineSpacing(float add, float mult) {
        super.setLineSpacing(add, mult);
        mSpacingMult = mult;
        mSpacingAdd = add;
    }

    /**
     * Set the lower text size limit and invalidate the view
     *
     * @param minTextSize
     */
    public void setMinTextSize(float minTextSize) {
        mMinTextSize = minTextSize;
        adjustTextSize();
    }

    private void adjustTextSize() {
        if (!mInitializedDimens) {
            return;
        }
        int startSize = (int) mMinTextSize;
        int heightLimit = getMeasuredHeight() - getCompoundPaddingBottom()
                - getCompoundPaddingTop();
        mWidthLimit = getMeasuredWidth() - getCompoundPaddingLeft()
                - getCompoundPaddingRight();
        mAvailableSpaceRect.right = mWidthLimit;
        mAvailableSpaceRect.bottom = heightLimit;
        super.setTextSize(
                TypedValue.COMPLEX_UNIT_PX,
                efficientTextSizeSearch(startSize, (int) mMaxTextSize,
                        mSizeTester, mAvailableSpaceRect));
    }

    private final SizeTester mSizeTester = new SizeTester() {
        @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
        @Override
        public int onTestSize(int suggestedSize, RectF availableSPace) {
            mPaint.setTextSize(suggestedSize);
            String text = getText().toString();
            boolean singleline = getMaxLines() == 1;
            if (singleline) {
                mTextRect.bottom = mPaint.getFontSpacing();
                mTextRect.right = mPaint.measureText(text);
            } else {
                StaticLayout layout = new StaticLayout(text, mPaint,
                        mWidthLimit, Alignment.ALIGN_NORMAL, mSpacingMult,
                        mSpacingAdd, true);

                // Return early if we have more lines
                if (getMaxLines() != NO_LINE_LIMIT
                        && layout.getLineCount() > getMaxLines()) {
                    return 1;
                }
                mTextRect.bottom = layout.getHeight();
                int maxWidth = -1;
                for (int i = 0; i < layout.getLineCount(); i++) {
                    if (maxWidth < layout.getLineWidth(i)) {
                        maxWidth = (int) layout.getLineWidth(i);
                    }
                }
                mTextRect.right = maxWidth;
            }

            mTextRect.offsetTo(0, 0);
            if (availableSPace.contains(mTextRect)) {

                // May be too small, don't worry we will find the best match
                return -1;
            } else {
                // too big
                return 1;
            }
        }
    };

    /**
     * Enables or disables size caching, enabling it will improve performance
     * where you are animating a value inside TextView. This stores the font
     * size against getText().length() Be careful though while enabling it as 0
     * takes more space than 1 on some fonts and so on.
     *
     * @param enable
     *            Enable font size caching
     */
    public void enableSizeCache(boolean enable) {
        mEnableSizeCache = enable;
        mTextCachedSizes.clear();
        adjustTextSize(getText().toString());
    }

    private int efficientTextSizeSearch(int start, int end,
            SizeTester sizeTester, RectF availableSpace) {
        if (!mEnableSizeCache) {
            return binarySearch(start, end, sizeTester, availableSpace);
        }
        int key = getText().toString().length();
        int size = mTextCachedSizes.get(key);
        if (size != 0) {
            return size;
        }
        size = binarySearch(start, end, sizeTester, availableSpace);
        mTextCachedSizes.put(key, size);
        return size;
    }

    private static int binarySearch(int start, int end, SizeTester sizeTester,
            RectF availableSpace) {
        int lastBest = start;
        int lo = start;
        int hi = end - 1;
        int mid = 0;
        while (lo <= hi) {
            mid = (lo + hi) >>> 1;
            int midValCmp = sizeTester.onTestSize(mid, availableSpace);
            if (midValCmp < 0) {
                lastBest = lo;
                lo = mid + 1;
            } else if (midValCmp > 0) {
                hi = mid - 1;
                lastBest = hi;
            } else {
                return mid;
            }
        }
        // Make sure to return the last best.
        // This is what should always be returned.
        return lastBest;

    }

    @Override
    protected void onTextChanged(final CharSequence text, final int start,
            final int before, final int after) {
        super.onTextChanged(text, start, before, after);
        adjustTextSize();
    }

    @Override
    protected void onSizeChanged(int width, int height, int oldwidth,
            int oldheight) {
        mInitializedDimens = true;
        mTextCachedSizes.clear();
        super.onSizeChanged(width, height, oldwidth, oldheight);
        if (width != oldwidth || height != oldheight) {
            adjustTextSize();
        }
    }
}

चेतावनी:

हालांकि एंड्रॉइड 3.1 (हनीकॉम्ब) में इस सुलझे हुए बग से सावधान रहें ।


ठीक है, मैंने कोड का परीक्षण किया है, और यह ठीक लगता है। हालाँकि, आपने getMaxLines () का उपयोग किया है, जो कि API 16 के लिए है, लेकिन आप maxLines को स्टोर कर सकते हैं और इसे setMaxLines को ओवरराइड करके प्राप्त कर सकते हैं और इसके मूल्य को संग्रहीत कर सकते हैं। मैंने इसे बदल दिया है और अब यह ठीक काम करता है। इसके अलावा, चूंकि कभी-कभी पाठ सबसे छोटे आकार के लिए बहुत लंबा हो सकता है, इसलिए मैंने setEllipsize का उपयोग करने की कोशिश की है, और यह काम भी किया है! मुझे लगता है कि हमारे पास एक विजेता है। कृपया अपना कोड यहां पोस्ट करें ताकि मैं इसे सही के रूप में चिह्नित कर सकूं।
एंड्रॉइड डेवलपर

आपने getMaxLines () को नहीं हटाया और अपना उपयोग किया। यह अभी भी केवल API16 से काम करेगा ... कृपया इसे बदल दें ताकि हर कोई इसका उपयोग कर सके। मैं सेटमैक्सलाइनों को ओवरराइड करने का सुझाव देता हूं ताकि पैरामीटर को किसी फ़ील्ड में संग्रहीत किया जा सके और फिर गेटमैक्लाइंस का उपयोग करने के बजाय फ़ील्ड का उपयोग कर सकें।
Android डेवलपर

अब जांच करें, अधिकतम लाइनों के लिए अतिरिक्त समर्थन।
एम-वाजेह

ठीक लगता है। आपको "@TargetApi (Build.VERSION_CODES.JELLY_BEAN)" को onTestSize () विधि से जोड़ना चाहिए ताकि लिंट इसके बारे में कोई त्रुटि / चेतावनी न दे, और इसे इसके बजाय CTOR में प्रारंभ करें। स्थैतिक के लिए द्विआधारी खोज सेट करना भी एक अच्छी बात है, और आप सबसे बड़े CTOR पर इनिशियलाइज़ेशन कर सकते हैं और इसे अन्य CTRs से कॉल कर सकते हैं। हालाँकि, यह वास्तव में सबसे अच्छा जवाब है और आप एक वी के लायक हैं। यह आखिरकार इस पुराने सवाल का एक अच्छा जवाब है। बहुत बढ़िया!
Android डेवलपर

@ M-WaJeEh इस सूत्र में नई पोस्ट की जाँच करें। "मार्टिन" नामक एक उपयोगकर्ता का कहना है कि उसके पास आपके कोड के लिए एक फिक्स है।
एंड्रॉयड डेवलपर

14

मैंने एम-वेजेह के उत्तर को थोड़ा संशोधित किया है ताकि पक्षों पर यौगिक यौगिकों को ध्यान में रखा जा सके।

getCompoundPaddingXXXX()तरीकों वापसी padding of the view + drawable space। उदाहरण के लिए देखें: TextView.getCompoundPaddingLeft ()

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


अपडेट किया गया सेगमेंट adjustTextSize(String):

private void adjustTextSize(final String text) {
  if (!mInitialized) {
    return;
  }
  int heightLimit = getMeasuredHeight() - getCompoundPaddingBottom() - getCompoundPaddingTop();
  mWidthLimit = getMeasuredWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();

  mAvailableSpaceRect.right = mWidthLimit;
  mAvailableSpaceRect.bottom = heightLimit;

  int maxTextSplits = text.split(" ").length;
  AutoResizeTextView.super.setMaxLines(Math.min(maxTextSplits, mMaxLines));

  super.setTextSize(
      TypedValue.COMPLEX_UNIT_PX,
      binarySearch((int) mMinTextSize, (int) mMaxTextSize,
                   mSizeTester, mAvailableSpaceRect));
}

आपने M-WaJeEh के स्रोत को अपडेट किया है। आपने इसे नए उत्तर के रूप में क्यों रखा? मुझे पता है कि आपके पास अच्छी इच्छाशक्ति है, लेकिन क्या इसे जवाब के रूप में रखा जाना अच्छी बात है? मुझे यकीन नहीं है कि वह आपके उत्तर को देख सकता है ...
एंड्रॉइड डेवलपर

1
मैंने अभी उस अपडेट को प्रदान करने में सक्षम होने के लिए साइन अप किया है। मेरी प्रतिष्ठा संख्या केवल 1 है जो मुझे उन पोस्टों पर टिप्पणी करने से रोकती है जो मेरी नहीं हैं (न्यूनतम 15 है)।
मार्टिन

कोई चिंता नहीं, शायद आप मेरे उत्तर को M-WajeEh में प्रसारित करना चाहते हैं क्योंकि मैं उससे फिलहाल संपर्क नहीं कर सकता: /
मार्टिन

क्या आप कृपया बेहतर वर्णन करने का प्रयास कर सकते हैं कि यह क्या है जो आपने किया है? क्या आपने बग ठीक किया? क्या आप बग दिखाने के लिए स्क्रीनशॉट दिखा सकते हैं?
एंड्रॉयड डेवलपर

1
हाय @MartinH, एसओ में आपका स्वागत है। मैं इस पर गौर करूंगा और परीक्षण के बाद आपके नाम का उल्लेख करके और आपके पोस्ट का लिंक पोस्ट करके अपने उत्तर को अपडेट करूंगा । कृपया मुझे कुछ दिन दीजिए। मैं आजकल कहीं और फंस गया हूं।
एम-वाजेह

7

ठीक है, मैंने आपके परीक्षण को ठीक करने के लिए अपने कोड को बड़े पैमाने पर फिर से लिखने के लिए पिछले सप्ताह का उपयोग किया है । अब आप इस 1: 1 को कॉपी कर सकते हैं और यह तुरंत काम करेगा - सहित setSingleLine()। कृपया समायोजित करें MIN_TEXT_SIZEऔर याद रखेंMAX_TEXT_SIZE यदि आप अत्यधिक मूल्यों के लिए जा रहे हैं।

परिवर्तित एल्गोरिथ्म इस तरह दिखता है:

for (float testSize; (upperTextSize - lowerTextSize) > mThreshold;) {

    // Go to the mean value...
    testSize = (upperTextSize + lowerTextSize) / 2;

    // ... inflate the dummy TextView by setting a scaled textSize and the text...
    mTestView.setTextSize(TypedValue.COMPLEX_UNIT_SP, testSize / mScaledDensityFactor);
    mTestView.setText(text);

    // ... call measure to find the current values that the text WANTS to occupy
    mTestView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
    int tempHeight = mTestView.getMeasuredHeight();

    // ... decide whether those values are appropriate.
    if (tempHeight >= targetFieldHeight) {
        upperTextSize = testSize; // Font is too big, decrease upperSize
    }
    else {
        lowerTextSize = testSize; // Font is too small, increase lowerSize
    }
}

और पूरी क्लास कर सकती है यहां पाई सकती है।

परिणाम अब बहुत लचीला है। यह xml में घोषित समान काम करता है:

<com.example.myProject.AutoFitText
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="4"
    android:text="@string/LoremIpsum" />

... और साथ ही आपके परीक्षण में प्रोग्रामेटिक रूप से बनाया गया है।

मैं वास्तव में आशा करता हूं कि अब आप इसका उपयोग कर सकते हैं। आप setText(CharSequence text)अब इसे कॉल कर सकते हैं। वर्ग मूर्खतापूर्ण दुर्लभ अपवादों का ध्यान रखता है और रॉक-सॉलिड होना चाहिए। केवल बात यह है कि एल्गोरिथ्म है नहीं अभी तक का समर्थन है:

  • setMaxLines(x)कहाँ तक बुलाता हैx >= 2

लेकिन अगर आप चाहें तो इसे बनाने में आपकी मदद करने के लिए मैंने व्यापक टिप्पणियां जोड़ी हैं!


कृपया ध्यान दें:

यदि आप इसे केवल एक लाइन तक सीमित किए बिना सामान्य रूप से उपयोग करते हैं तो पहले उल्लिखित शब्द-ब्रेकिंग हो सकता है। यह एक Android सुविधा है , की गलती नहीं है AutoFitText। एंड्रॉइड हमेशा उन शब्दों को तोड़ देगा जो टेक्स्ट व्यू के लिए बहुत लंबे हैं और यह वास्तव में काफी सुविधा है। यदि आप यहां हस्तक्षेप करना चाहते हैं तो कृपया मेरी टिप्पणियों और कोड को 203 पर शुरू करें। मैंने पहले ही आपके लिए एक पर्याप्त विभाजन और मान्यता लिख ​​दी है, इसलिए आपको केवल इतना करना होगा कि शब्दों को विभाजित करना है और फिर अपनी इच्छानुसार संशोधित करना है। ।

निष्कर्ष में: आपको अपने परीक्षण को अंतरिक्ष वर्णों का समर्थन करने के लिए पुनर्लेखन पर अत्यधिक विचार करना चाहिए, जैसे:

final Random _random = new Random();
final String ALLOWED_CHARACTERS = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890";
final int textLength = _random.nextInt(80) + 20;
final StringBuilder builder = new StringBuilder();
for (int i = 0; i < textLength; ++i) {
    if (i % 7 == 0 && i != 0) {
        builder.append(" ");
    }
    builder.append(ALLOWED_CHARACTERS.charAt(_random.nextInt(ALLOWED_CHARACTERS.length())));
}
((AutoFitText) findViewById(R.id.textViewMessage)).setText(builder.toString());

यह बहुत beutiful (और अधिक यथार्थवादी) परिणाम पैदा करेगा।
आपको इस मामले में भी शुरुआत करने के लिए टिप्पणी मिल जाएगी।

शुभकामनाएँ और शुभकामनाएँ


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

btw, आपको mTestView वैरिएबल का उपयोग करने और सीधे वर्तमान दृश्य पर परीक्षण करने की आवश्यकता नहीं है, और इस तरह से आपको सभी विशेष चीजों पर विचार नहीं करना होगा। इसके अलावा, मुझे लगता है कि MAX_TEXT_SIZE के बजाय आप targetFieldHeight का उपयोग कर सकते हैं।
Android डेवलपर

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

मुझे यह भी लगता है कि 2 बाइनरी खोजों को एक ही लाइन में विलय किया जा सकता है जब स्थिति बस हो सकती है: यदि (getMeasuredWidth ()> = targetFieldWidth || getMeasuredHeight ()> = targetFieldHeight)
Android डेवलपर

1
एक और मुद्दा मैंने पाया है कि पाठ गुरुत्वाकर्षण है। मुझे लगता है कि यह लंबवत केंद्रित नहीं हो सकता।
Android डेवलपर

4

मेरी आवश्यकता है

  • ScalableTextView पर क्लिक करें
  • एक सूची खोलें और विभिन्न लंबाई स्ट्रिंग आइटम प्रदर्शित करें।
  • सूची से एक पाठ का चयन करें।
  • पाठ को किसी अन्य गतिविधि में ScalableTextView पर सेट करें।

मैंने इस लिंक को संदर्भित किया: ऑटो स्केल टेक्स्टव्यू टेक्स्ट टू फिट टू बाउंड्स (टिप्पणियों सहित) और साथ ही डायलॉगटाइटलजावा

मैंने पाया कि प्रदान किया गया समाधान अच्छा और सरल है, लेकिन यह गतिशील रूप से टेक्स्ट बॉक्स के आकार को नहीं बदलता है। यह बहुत अच्छा काम करता है जब सूची दृश्य से चयनित पाठ की लंबाई मौजूदा पाठ की तुलना में आकार में अधिक होती है ScalableTextView । जब चयनित पाठ की लंबाई मौजूदा पाठ की तुलना में छोटी होती है ScalableTextView, तो यह पाठ के आकार में वृद्धि नहीं करता है, पाठ को छोटे आकार में दिखाता है।

मैंने पाठ लंबाई के आधार पर पाठ आकार को पढ़ने के लिए ScalableTextView.java को संशोधित किया। मेरा यहाँ हैScalableTextView.java

public class ScalableTextView extends TextView
{
float defaultTextSize = 0.0f;

public ScalableTextView(Context context, AttributeSet attrs, int defStyle)
{
    super(context, attrs, defStyle);
    setSingleLine();
    setEllipsize(TruncateAt.END);
    defaultTextSize = getTextSize();
}

public ScalableTextView(Context context, AttributeSet attrs)
{
    super(context, attrs);
    setSingleLine();
    setEllipsize(TruncateAt.END);
    defaultTextSize = getTextSize();
}

public ScalableTextView(Context context)
{
    super(context);
    setSingleLine();
    setEllipsize(TruncateAt.END);
    defaultTextSize = getTextSize();
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
    setTextSize(TypedValue.COMPLEX_UNIT_PX, defaultTextSize);
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);

    final Layout layout = getLayout();
    if (layout != null)
    {
        final int lineCount = layout.getLineCount();
        if (lineCount > 0)
        {
            int ellipsisCount = layout.getEllipsisCount(lineCount - 1);
            while (ellipsisCount > 0)
            {
                final float textSize = getTextSize();

                // textSize is already expressed in pixels
                setTextSize(TypedValue.COMPLEX_UNIT_PX, (textSize - 1));

                super.onMeasure(widthMeasureSpec, heightMeasureSpec);
                ellipsisCount = layout.getEllipsisCount(lineCount - 1);
            }
        }
    }
}
}

हैप्पी कोडिंग…।


क्या आपको प्रत्येक पुनरावृत्ति के लिए एक को कम करने के बजाय द्विआधारी खोज का उपयोग नहीं करना चाहिए? इसके अलावा, ऐसा लगता है कि यह कोड TextView को पाठ की एक पंक्ति के साथ होने के लिए बाध्य करता है, बजाय इसके कि यह कई पंक्तियों को रखने की अनुमति देता है।
एंड्रॉयड डेवलपर

यह एकमात्र समाधान था जिसने मेरे लिए काम किया। मेरी समस्या TextView से संबंधित थी, जो केवल 4.1 में दृश्य को फिट नहीं कर रही थी
फोलीवेइरा

ऐसा लगता है कि यह 100% के लिए माता-पिता से मेल नहीं खाता है। स्क्रीनशॉट देखें: s14.postimg.org/93c2xgs75/Screenshot_2.png
user25

4

मैं समझाता हूँ कि यह विशेषता कैसे काम करती है निम्न Android संस्करण चरण दर चरण:

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

dependencies {
    compile 'com.android.support:support-v4:26.1.0'
    compile 'com.android.support:appcompat-v7:26.1.0'
    compile 'com.android.support:support-v13:26.1.0' }

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    } }

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

<android.support.v7.widget.AppCompatTextView
            android:id="@+id/textViewAutoSize"
            android:layout_width="match_parent"
            android:layout_height="25dp"
            android:ellipsize="none"
            android:text="Auto size text with compatible lower android versions."
            android:textSize="12sp"
            app:autoSizeMaxTextSize="14sp"
            app:autoSizeMinTextSize="4sp"
            app:autoSizeStepGranularity="0.5sp"
            app:autoSizeTextType="uniform" />

ऑटो-फिट TextView का उनका कार्यान्वयन हालांकि अच्छी तरह से काम नहीं करता है। कई बार ऐसा होता है कि फ़ॉन्ट आकार का आकार बदलने के बजाय, पाठ केवल अगली पंक्ति में जाता है, बुरी तरह से ... यह उनके वीडियो पर भी दिखाया गया है, जैसे कि यह एक अच्छी बात है: youtu.be/fjUdJ2aVqE4?t.14 । ध्यान दें कि "टेक्स्टव्यू" का "डब्ल्यू" अगली पंक्ति में कैसे जाता है ... वैसे भी, इसके बारे में एक नया अनुरोध यहां बनाया गया है: जारी करने वाला । कृपया इसे अभिनीत करने पर विचार करें।
Android डेवलपर

@androiddeveloper तुम सही हो। मैंने यह नहीं बताया कि यह टैग कार्यान्वयन सिंगल लाइन काम करता है। यदि आपको रैप लाइनों की आवश्यकता है, तो आपको इस विशेषता को बदलना होगा: एंड्रॉइड: लेआउट_हाइट = "रैप_ कॉन्टेंट"। लेकिन android.support.v7.widget.AppCompatTextView और gradle कार्यान्वयन गारंटी इस विशेषता को काम करता है।
सिनान एर्गिन

मुझे नहीं लगता कि आप समझते हैं। मैं भाग-शब्द को अगली पंक्ति में नहीं रखना चाहता, जब तक कि इसे हल करने का कोई अन्य तरीका न हो। वीडियो में, आप आसानी से देख सकते हैं कि इसके बजाय फोंट छोटे हो सकते हैं। वह मुद्दा है। क्या आप कह रहे हैं कि आप इसे ठीक करना जानते हैं? मतलब वहाँ शब्द wraps नहीं होगा, और केवल फ़ॉन्ट आकार बदल जाता है?
Android डेवलपर

@androiddeveloper कई परिदृश्य हैं। मेरा परिदृश्य है: ऑटोफ़िट टेक्स्ट शब्द के साथ तय किया गया है और नहीं। सिस्टम फोंट आकार को उकसाने के दौरान, टेक्स्ट को टेक्स्टव्यू में वर्ड रैप नहीं दिखाना होता है। यदि वर्ड रैप आपके लिए कोई मायने नहीं रखता है, तो निर्धारित ऊंचाई को परेशान न करें। यह संपत्ति केवल वर्ड रैप का उपयोग नहीं कर रही है, आप टेक्स्ट को टेक्स्ट व्यू को तय कर सकते हैं।
सिनान एल्गिन

मेरे परीक्षणों के अनुसार, फ़ॉन्ट आकार सही ढंग से नहीं बदलते हैं, और शब्द रैप समस्या हो सकती है।
Android डेवलपर

3

चेतावनी, एंड्रॉइड 3 में बग (हनीकॉम्ब) और एंड्रॉइड 4.0 (आइसक्रीम सैंडविच)

Android संस्करण: 3.1 - 4.04 में एक बग है, जो टेक्स्ट व्यू के अंदर setTextSize () केवल पहली बार (पहले आह्वान) के लिए काम करता है।

बग को 22493 अंक में वर्णित किया गया है : एंड्रॉइड 4.0 में टेक्स्ट व्यू ऊंचाई बग और अंक 17343: बटन की ऊंचाई और पाठ हनीकोम्ब पर पाठ आकार में वृद्धि और कमी के बाद अपनी मूल स्थिति में वापस नहीं आता है

आकार बदलने से पहले TextView को सौंपे गए पाठ में एक नया वर्ण जोड़ना है:

final String DOUBLE_BYTE_SPACE = "\u3000";
textView.append(DOUBLE_BYTE_SPACE);

मैं इसे अपने कोड में निम्नानुसार उपयोग करता हूं:

final String DOUBLE_BYTE_SPACE = "\u3000";
AutoResizeTextView textView = (AutoResizeTextView) view.findViewById(R.id.aTextView);
String fixString = "";
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB_MR1
   && android.os.Build.VERSION.SDK_INT <= android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {  
    fixString = DOUBLE_BYTE_SPACE;
}
textView.setText(fixString + "The text" + fixString);

मैं अपने पाठ के बाईं और दाईं ओर इस "\ u3000" चरित्र को जोड़ता हूं, इसे केंद्रित रखने के लिए। यदि आपने इसे बाईं ओर संरेखित किया है, तो केवल दाईं ओर संलग्न करें। बेशक इसे AutoResizeTextView विजेट के साथ भी एम्बेड किया जा सकता है, लेकिन मैं बाहर फिक्स कोड रखना चाहता था।


क्या आप कृपया ठीक से दिखा सकते हैं कि कौन सी रेखाएं (पहले / किन लाइनों के बाद) और किस फ़ंक्शन में हैं?
एंड्रॉइड डेवलपर

ठीक है धन्यवाद। मुझे आशा है कि यह सब कुछ ठीक कर देगा, और जो कोई भी इसे पढ़ेगा वह इसे मददगार पाएगा। वर्तमान में मैं इसे देख नहीं सकता। शायद अगली बार कि मैं इसका इस्तेमाल करूंगा।
Android डेवलपर

इस कोड को व्यू कोड के बाहर से बुलाया जाता है। क्या आप इसके बजाय दृश्य कोड के अंदर इसे संभालने का एक अच्छा वैकल्पिक तरीका जानते हैं?
एंड्रॉइड डेवलपर

आप textView.setText () को ओवरराइड कर सकते हैं और इस कोड को
TextView

क्या इसका यह अर्थ भी नहीं होगा कि "गेटटेक्स्ट ()" अतिरिक्त वर्णों के साथ पाठ लौटाएगा?
एंड्रॉयड डेवलपर

3

अब इस समस्या का एक आधिकारिक समाधान है। Android O के साथ पेश किए गए ऑटोसाइज़िंग टेक्स्ट व्यू सपोर्ट लाइब्रेरी 26 में उपलब्ध हैं और यह एंड्रॉइड 4.0 के नीचे सभी तरह से संगत है।

https://developer.android.com/preview/features/autosizing-textview.html

मुझे यकीन नहीं है कि https://stackoverflow.com/a/42940171/47680 जिसमें यह जानकारी भी शामिल थी, को किसी व्यवस्थापक द्वारा हटा दिया गया था।


1
हां, मैंने इसके बारे में भी सुना है, लेकिन यह कितना अच्छा है? क्या इसका उपयोग करने का कोई नमूना है? यहां तक ​​कि उनके वीडियो में, मैंने एक बग देखा है: एक शब्द से एक पत्र लाइन के बाद मिला (लिपटे हुए): youtu.be/1N9KveJ-FU8?t=781 ("W" नोटिस)
Android डेवलपर

3

जून 2018 से एंड्रॉइड आधिकारिक तौर पर एंड्रॉइड 4.0 (एपीआई स्तर 14) और उच्चतर के लिए इस सुविधा का समर्थन करता है
Android 8.0 (API स्तर 26) और उच्चतर के साथ:

setAutoSizeTextTypeUniformWithConfiguration(int autoSizeMinTextSize, int autoSizeMaxTextSize, 
        int autoSizeStepGranularity, int unit);

Android 8.0 (API स्तर 26) से पहले के Android संस्करण:

TextViewCompat.setAutoSizeTextTypeUniformWithConfiguration(TextView textView,
int autoSizeMinTextSize, int autoSizeMaxTextSize, int autoSizeStepGranularity, int unit)

मेरे विस्तृत उत्तर की जाँच करें ।


1

पाठ दृश्य को एक छवि में बदलें, और सीमा के भीतर छवि पैमाने पर।

यहां एक उदाहरण दिया गया है कि किसी दृश्य को छवि में कैसे परिवर्तित किया जाए: एंड्रॉइड में प्रदर्शित किए बिना बिटमैप पर एक दृश्य परिवर्तित करना?

समस्या यह है कि, आपका पाठ चयन योग्य नहीं होगा, लेकिन उसे चाल चलनी चाहिए। मैंने इसकी कोशिश नहीं की है, इसलिए मुझे यकीन नहीं है कि यह कैसा होगा (स्केलिंग के कारण)।


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

0

नीचे कस्टम फ़ॉन्ट के लिए अतिरिक्त कार्यक्षमता के साथ avalancha TextView है।

उपयोग:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:foo="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >

                <de.meinprospekt.androidhd.view.AutoFitText
                android:layout_width="wrap_content"
                android:layout_height="10dp"
                android:text="Small Text"
                android:textColor="#FFFFFF"
                android:textSize="100sp"
                foo:customFont="fonts/Roboto-Light.ttf" />

</FrameLayout>

जोड़ना न भूलें: xmlns: foo = "http://schemas.android.com/apk/res-auto"। फ़ॉन्ट संपत्ति में होना चाहिए अप्रत्यक्ष

import java.util.ArrayList;
import java.util.List;

import android.annotation.SuppressLint;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.os.Build;
import android.util.AttributeSet;
import android.util.Log;
import android.util.TypedValue;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.view.ViewTreeObserver;
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
import android.widget.TextView;
import de.meinprospekt.androidhd.R;
import de.meinprospekt.androidhd.adapter.BrochuresHorizontalAdapter;
import de.meinprospekt.androidhd.util.LOG;

/**
 * https://stackoverflow.com/a/16174468/2075875 This class builds a new android Widget named AutoFitText which can be used instead of a TextView to
 * have the text font size in it automatically fit to match the screen width. Credits go largely to Dunni, gjpc, gregm and speedplane from
 * Stackoverflow, method has been (style-) optimized and rewritten to match android coding standards and our MBC. This version upgrades the original
 * "AutoFitTextView" to now also be adaptable to height and to accept the different TextView types (Button, TextClock etc.)
 * 
 * @author pheuschk
 * @createDate: 18.04.2013
 * 
 * combined with: https://stackoverflow.com/a/7197867/2075875
 */
@SuppressWarnings("unused")
public class AutoFitText extends TextView {

    private static final String TAG = AutoFitText.class.getSimpleName();

    /** Global min and max for text size. Remember: values are in pixels! */
    private final int MIN_TEXT_SIZE = 10;
    private final int MAX_TEXT_SIZE = 400;

    /** Flag for singleLine */
    private boolean mSingleLine = false;

    /**
     * A dummy {@link TextView} to test the text size without actually showing anything to the user
     */
    private TextView mTestView;

    /**
     * A dummy {@link Paint} to test the text size without actually showing anything to the user
     */
    private Paint mTestPaint;

    /**
     * Scaling factor for fonts. It's a method of calculating independently (!) from the actual density of the screen that is used so users have the
     * same experience on different devices. We will use DisplayMetrics in the Constructor to get the value of the factor and then calculate SP from
     * pixel values
     */
    private float mScaledDensityFactor;

    /**
     * Defines how close we want to be to the factual size of the Text-field. Lower values mean higher precision but also exponentially higher
     * computing cost (more loop runs)
     */
    private final float mThreshold = 0.5f;

    /**
     * Constructor for call without attributes --> invoke constructor with AttributeSet null
     * 
     * @param context
     */
    public AutoFitText(Context context) {
        this(context, null);
    }

    public AutoFitText(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public AutoFitText(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init(context, attrs);
    }

    private void init(Context context, AttributeSet attrs) {
        //TextViewPlus part https://stackoverflow.com/a/7197867/2075875
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AutoFitText);
        String customFont = a.getString(R.styleable.AutoFitText_customFont);
        setCustomFont(context, customFont);
        a.recycle();

        // AutoFitText part
        mScaledDensityFactor = context.getResources().getDisplayMetrics().scaledDensity;
        mTestView = new TextView(context);

        mTestPaint = new Paint();
        mTestPaint.set(this.getPaint());

        this.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

            @Override
            public void onGlobalLayout() {
                // make an initial call to onSizeChanged to make sure that refitText is triggered
                onSizeChanged(AutoFitText.this.getWidth(), AutoFitText.this.getHeight(), 0, 0);
                // Remove the LayoutListener immediately so we don't run into an infinite loop
                //AutoFitText.this.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                removeOnGlobalLayoutListener(AutoFitText.this, this);
            }
        });
    }

    public boolean setCustomFont(Context ctx, String asset) {
        Typeface tf = null;
        try {
        tf = Typeface.createFromAsset(ctx.getAssets(), asset);  
        } catch (Exception e) {
            LOG.e(TAG, "Could not get typeface: "+e.getMessage());
            return false;
        }

        setTypeface(tf);  
        return true;
    }

    @SuppressLint("NewApi")
    public static void removeOnGlobalLayoutListener(View v, ViewTreeObserver.OnGlobalLayoutListener listener){
        if (Build.VERSION.SDK_INT < 16) {
            v.getViewTreeObserver().removeGlobalOnLayoutListener(listener);
        } else {
            v.getViewTreeObserver().removeOnGlobalLayoutListener(listener);
        }
    }

    /**
     * Main method of this widget. Resizes the font so the specified text fits in the text box assuming the text box has the specified width. This is
     * done via a dummy text view that is refit until it matches the real target width and height up to a certain threshold factor
     * 
     * @param targetFieldWidth The width that the TextView currently has and wants filled
     * @param targetFieldHeight The width that the TextView currently has and wants filled
     */
    private void refitText(String text, int targetFieldWidth, int targetFieldHeight) {

        // Variables need to be visible outside the loops for later use. Remember size is in pixels
        float lowerTextSize = MIN_TEXT_SIZE;
        float upperTextSize = MAX_TEXT_SIZE;

        // Force the text to wrap. In principle this is not necessary since the dummy TextView
        // already does this for us but in rare cases adding this line can prevent flickering
        this.setMaxWidth(targetFieldWidth);

        // Padding should not be an issue since we never define it programmatically in this app
        // but just to to be sure we cut it off here
        targetFieldWidth = targetFieldWidth - this.getPaddingLeft() - this.getPaddingRight();
        targetFieldHeight = targetFieldHeight - this.getPaddingTop() - this.getPaddingBottom();

        // Initialize the dummy with some params (that are largely ignored anyway, but this is
        // mandatory to not get a NullPointerException)
        mTestView.setLayoutParams(new LayoutParams(targetFieldWidth, targetFieldHeight));

        // maxWidth is crucial! Otherwise the text would never line wrap but blow up the width
        mTestView.setMaxWidth(targetFieldWidth);

        if (mSingleLine) {
            // the user requested a single line. This is very easy to do since we primarily need to
            // respect the width, don't have to break, don't have to measure...

            /*************************** Converging algorithm 1 ***********************************/
            for (float testSize; (upperTextSize - lowerTextSize) > mThreshold;) {

                // Go to the mean value...
                testSize = (upperTextSize + lowerTextSize) / 2;

                mTestView.setTextSize(TypedValue.COMPLEX_UNIT_SP, testSize / mScaledDensityFactor);
                mTestView.setText(text);
                mTestView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);

                if (mTestView.getMeasuredWidth() >= targetFieldWidth) {
                    upperTextSize = testSize; // Font is too big, decrease upperSize
                } else {
                    lowerTextSize = testSize; // Font is too small, increase lowerSize
                }
            }
            /**************************************************************************************/

            // In rare cases with very little letters and width > height we have vertical overlap!
            mTestView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);

            if (mTestView.getMeasuredHeight() > targetFieldHeight) {
                upperTextSize = lowerTextSize;
                lowerTextSize = MIN_TEXT_SIZE;

                /*************************** Converging algorithm 1.5 *****************************/
                for (float testSize; (upperTextSize - lowerTextSize) > mThreshold;) {

                    // Go to the mean value...
                    testSize = (upperTextSize + lowerTextSize) / 2;

                    mTestView.setTextSize(TypedValue.COMPLEX_UNIT_SP, testSize / mScaledDensityFactor);
                    mTestView.setText(text);
                    mTestView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);

                    if (mTestView.getMeasuredHeight() >= targetFieldHeight) {
                        upperTextSize = testSize; // Font is too big, decrease upperSize
                    } else {
                        lowerTextSize = testSize; // Font is too small, increase lowerSize
                    }
                }
                /**********************************************************************************/
            }
        } else {

            /*********************** Converging algorithm 2 ***************************************/
            // Upper and lower size converge over time. As soon as they're close enough the loop
            // stops
            // TODO probe the algorithm for cost (ATM possibly O(n^2)) and optimize if possible
            for (float testSize; (upperTextSize - lowerTextSize) > mThreshold;) {

                // Go to the mean value...
                testSize = (upperTextSize + lowerTextSize) / 2;

                // ... inflate the dummy TextView by setting a scaled textSize and the text...
                mTestView.setTextSize(TypedValue.COMPLEX_UNIT_SP, testSize / mScaledDensityFactor);
                mTestView.setText(text);

                // ... call measure to find the current values that the text WANTS to occupy
                mTestView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
                int tempHeight = mTestView.getMeasuredHeight();
                // int tempWidth = mTestView.getMeasuredWidth();

                // LOG.debug("Measured: " + tempWidth + "x" + tempHeight);
                // LOG.debug("TextSize: " + testSize / mScaledDensityFactor);

                // ... decide whether those values are appropriate.
                if (tempHeight >= targetFieldHeight) {
                    upperTextSize = testSize; // Font is too big, decrease upperSize
                } else {
                    lowerTextSize = testSize; // Font is too small, increase lowerSize
                }
            }
            /**************************************************************************************/

            // It is possible that a single word is wider than the box. The Android system would
            // wrap this for us. But if you want to decide fo yourself where exactly to break or to
            // add a hyphen or something than you're going to want to implement something like this:
            mTestPaint.setTextSize(lowerTextSize);
            List<String> words = new ArrayList<String>();

            for (String s : text.split(" ")) {
                Log.i("tag", "Word: " + s);
                words.add(s);
            }
            for (String word : words) {
                if (mTestPaint.measureText(word) >= targetFieldWidth) {
                    List<String> pieces = new ArrayList<String>();
                    // pieces = breakWord(word, mTestPaint.measureText(word), targetFieldWidth);

                    // Add code to handle the pieces here...
                }
            }
        }

        /**
         * We are now at most the value of threshold away from the actual size. To rather undershoot than overshoot use the lower value. To match
         * different screens convert to SP first. See {@link http://developer.android.com/guide/topics/resources/more-resources.html#Dimension} for
         * more details
         */
        this.setTextSize(TypedValue.COMPLEX_UNIT_SP, lowerTextSize / mScaledDensityFactor);
        return;
    }

    /**
     * This method receives a call upon a change in text content of the TextView. Unfortunately it is also called - among others - upon text size
     * change which means that we MUST NEVER CALL {@link #refitText(String)} from this method! Doing so would result in an endless loop that would
     * ultimately result in a stack overflow and termination of the application
     * 
     * So for the time being this method does absolutely nothing. If you want to notify the view of a changed text call {@link #setText(CharSequence)}
     */
    @Override
    protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) {
        // Super implementation is also intentionally empty so for now we do absolutely nothing here
        super.onTextChanged(text, start, lengthBefore, lengthAfter);
    }

    @Override
    protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) {
        if (width != oldWidth && height != oldHeight) {
            refitText(this.getText().toString(), width, height);
        }
    }

    /**
     * This method is guaranteed to be called by {@link TextView#setText(CharSequence)} immediately. Therefore we can safely add our modifications
     * here and then have the parent class resume its work. So if text has changed you should always call {@link TextView#setText(CharSequence)} or
     * {@link TextView#setText(CharSequence, BufferType)} if you know whether the {@link BufferType} is normal, editable or spannable. Note: the
     * method will default to {@link BufferType#NORMAL} if you don't pass an argument.
     */
    @Override
    public void setText(CharSequence text, BufferType type) {

        int targetFieldWidth = this.getWidth();
        int targetFieldHeight = this.getHeight();

        if (targetFieldWidth <= 0 || targetFieldHeight <= 0 || text.equals("")) {
            // Log.v("tag", "Some values are empty, AutoFitText was not able to construct properly");
        } else {
            refitText(text.toString(), targetFieldWidth, targetFieldHeight);
        }
        super.setText(text, type);
    }

    /**
     * TODO add sensibility for {@link #setMaxLines(int)} invocations
     */
    @Override
    public void setMaxLines(int maxLines) {
        // TODO Implement support for this. This could be relatively easy. The idea would probably
        // be to manipulate the targetHeight in the refitText-method and then have the algorithm do
        // its job business as usual. Nonetheless, remember the height will have to be lowered
        // dynamically as the font size shrinks so it won't be a walk in the park still
        if (maxLines == 1) {
            this.setSingleLine(true);
        } else {
            throw new UnsupportedOperationException("MaxLines != 1 are not implemented in AutoFitText yet, use TextView instead");
        }
    }

    @Override
    public void setSingleLine(boolean singleLine) {
        // save the requested value in an instance variable to be able to decide later
        mSingleLine = singleLine;
        super.setSingleLine(singleLine);
    }
}

ज्ञात बग: एंड्रॉइड 4.03 के साथ काम नहीं करता है - फोंट अदृश्य या बहुत छोटे हैं (मूल हिमस्खलन भी काम नहीं करता है) नीचे उस बग के लिए समाधान है: https://stackoverflow.com/a/21851239/2075875


0

इसे इस्तेमाल करे

TextWatcher changeText = new TextWatcher() {
     @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                tv3.setText(et.getText().toString());
                tv3.post(new Runnable() {           
                    @Override
                    public void run() {
                    while(tv3.getLineCount() >= 3){                     
                            tv3.setTextSize((tv3.getTextSize())-1);                     
                        }
                    }
                });
            }

            @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

            @Override public void afterTextChanged(Editable s) { }
        };

मुझे नहीं लगता कि यह काम करेगा, क्योंकि हर बार जब आप पाठ का आकार बदलते हैं, तो यह आपके द्वारा ब्लॉक के साथ समाप्त होने के बाद ही ड्राइंग का कारण होगा (जिसका अर्थ है कि इसे घटनाओं-कतार में जोड़ा जाएगा)। इसका मतलब यह है कि लूप केवल प्रत्येक बार पाठ बदलने पर एक बार काम करेगा, और यह गारंटी नहीं देता है कि लाइनों की संख्या पाठ की 3 पंक्तियों से अधिक नहीं होगी।
Android डेवलपर

0

यदि आप कुछ आसान देख रहे हैं:

 public MyTextView extends TextView{

    public void resize(String text, float textViewWidth, float textViewHeight) {
       Paint p = new Paint();
       Rect bounds = new Rect();
       p.setTextSize(1);
       p.getTextBounds(text, 0, text.length(), bounds);
       float widthDifference = (textViewWidth)/bounds.width();
       float heightDifference = (textViewHeight);
       textSize = Math.min(widthDifference, heightDifference);
       setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
}

यह बहुत कम लगता है, लेकिन क्या यह मेरे द्वारा तैयार की गई परीक्षा उत्तीर्ण कर सकता है? इसके अलावा, जब यह फ़ंक्शन कहा जाता है तो मुझे नहीं मिलता है।
एंड्रॉयड डेवलपर

नहीं, यह अभी तक एक सुझाव है। मैं इसे सुधार दूँगा ताकि यह आपके परीक्षण को पास कर सके।
सैंडर

खैर, अगर यह एक सुझाव है, तो क्या आप इसे सीधे गीथूब में पोस्ट कर सकते हैं?
एंड्रॉयड डेवलपर

0

@Malachiasz द्वारा बताई गई समस्या के लिए त्वरित समाधान

मैंने ऑटो आकार वर्ग में इसके लिए कस्टम समर्थन जोड़कर समस्या को ठीक कर दिया है:

public void setTextCompat(final CharSequence text) {
    setTextCompat(text, BufferType.NORMAL);
}

public void setTextCompat(final CharSequence text, BufferType type) {
    // Quick fix for Android Honeycomb and Ice Cream Sandwich which sets the text only on the first call
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1 &&
        Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {
        super.setText(DOUBLE_BYTE_WORDJOINER + text + DOUBLE_BYTE_WORDJOINER, type);
    } else {
        super.setText(text, type);
    }
}

@Override
public CharSequence getText() {
    String originalText = super.getText().toString();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1 &&
        Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {
        // We try to remove the word joiners we added using compat method - if none found - this will do nothing.
        return originalText.replaceAll(DOUBLE_BYTE_WORDJOINER, "");
    } else {
        return originalText;
    }
}

yourView.setTextCompat(newTextValue)इसके बजाय बस फोन करेंyourView.setText(newTextValue)


सेटटैक्स ओवरराइड करने के बजाय, setTextCompat का नया फ़ंक्शन क्यों बनाएं? भी, कौन सा मुद्दा?
एंड्रॉइड डेवलपर

setText () TextView का एक अंतिम तरीका है, इस प्रकार आप इसे ओवरराइड नहीं कर पाएंगे। एक अन्य विकल्प यह होगा कि कस्टम टेक्स्ट व्यू के बाहर किया जाए, लेकिन यह समाधान टेक्स्ट व्यू के अंदर इसका उपयोग करने के लिए है।
इन्नुत नेगरू

बिल्कुल नहीं। कुछ "सेटटेक्स्ट" निजी हैं, कुछ सार्वजनिक हैं, और कुछ सार्वजनिक अंतिम नहीं हैं। ऐसा लगता है कि सार्वजनिक शून्य सेटटेक्स्ट (CharSequence text, BufferType प्रकार) को ओवरराइड करके सबसे अधिक संभाला जा सकता है। एक अंतिम कार्य है जो मुझे इसके उद्देश्य से नहीं पता है: सार्वजनिक अंतिम शून्य सेटटेक्स्ट (चार [पाठ], इंट स्टार्ट, इंट लेन)। हो सकता है कि कोड पर गहरी नजर हो।
Android डेवलपर

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

हां, लेकिन शायद अधिकांश मामलों के लिए, यह ठीक है।
Android डेवलपर

0

जोड़ने का प्रयास करें LayoutParamsऔर MaxWidthऔर MaxHeightकरने के लिए TextView। यह लेआउट को मूल कंटेनर का सम्मान करने के लिए मजबूर करेगा और अतिप्रवाह नहीं।

textview.setLayoutParams(new LayoutParams(LinearLayout.MATCH_PARENT,LinearLayout.WRAP_CONTENT));

int GeneralApproxWidthOfContainer = 400;
int GeneralApproxHeightOfContainer = 600;
textview.setMaxWidth(400);
textview.setMaxHeight(600);` 

मुझे यकीन नहीं है कि यह क्या है जिसके बारे में आप बात कर रहे हैं। क्या आप इसे textView नमूने में जोड़ने का सुझाव देते हैं, ताकि यह कभी-कभी मेरे द्वारा देखे जाने वाले छोटे से मुद्दे पर न हो? यदि हां, तो आपने इसके बारे में github वेबसाइट पर पोस्ट क्यों नहीं किया?
Android डेवलपर

0

Android O के बाद से, xml में टेक्स्ट का आकार बदलना ऑटो से संभव है:

https://developer.android.com/preview/features/autosizing-textview.html

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:autoSizeTextType="uniform"
    app:autoSizeMinTextSize="12sp"
    app:autoSizeMaxTextSize="100sp"
    app:autoSizeStepGranularity="2sp"
  />

Android O आपको TextView की विशेषताओं और सीमाओं के आधार पर अपने लेआउट को भरने के लिए टेक्स्ट आकार को स्वचालित रूप से विस्तारित करने या अनुबंध करने के लिए एक TextView निर्देश देने की अनुमति देता है। यह सेटिंग डायनामिक कंटेंट के साथ अलग-अलग स्क्रीन पर टेक्स्ट साइज़ को ऑप्टिमाइज़ करना आसान बनाती है।

समर्थन लाइब्रेरी 26.0 बीटा Android O से पहले Android संस्करणों को चलाने वाले उपकरणों पर ऑटोसाइज़िंग टेक्स्ट व्यू सुविधा के लिए पूर्ण समर्थन प्रदान करता है। पुस्तकालय Android 4.0 (एपीआई स्तर 14) और उच्चतर को समर्थन प्रदान करता है। Android.support.v4.widget पैकेज में पिछड़े-संगत फैशन में सुविधाओं का उपयोग करने के लिए TextViewCompat वर्ग है।


अफसोस की बात है, मेरे परीक्षणों के अनुसार, और यहां तक ​​कि Google IO के वीडियो में, मैंने देखा है कि इसमें समस्याएँ हैं, जैसे कि गलत तरीके से भाग-शब्द को लपेटना, बजाय फ़ॉन्ट का आकार बदलना। मैंने इसके बारे में यहां बताया है: जारी करने वाला। URLissues / 38468964 , और यही कारण है कि मैं अभी भी इसका उपयोग नहीं करता हूं।
Android डेवलपर

0

जब मैंने Android आधिकारिक ऑटोसाइज़िंग टेक्स्ट व्यू की कोशिश की , तो मैंने पाया कि यदि आपका एंड्रॉइड संस्करण एंड्रॉइड 8.0 (एपीआई स्तर 26) से पहले है, तो आपको उपयोग की आवश्यकता है android.support.v7.widget.AppCompatTextView, और सुनिश्चित करें कि आपका समर्थन लाइब्रेरी संस्करण 26.0.0 से ऊपर है। उदाहरण:

<android.support.v7.widget.AppCompatTextView
    android:layout_width="130dp"
    android:layout_height="32dp"
    android:maxLines="1"
    app:autoSizeMaxTextSize="22sp"
    app:autoSizeMinTextSize="12sp"
    app:autoSizeStepGranularity="2sp"
    app:autoSizeTextType="uniform" />

अपडेट :

@ एंड्रॉइड-डेवलपर के उत्तर के अनुसार, मैं AppCompatActivityस्रोत कोड की जांच करता हूं , और इन दो लाइनों को पायाonCreate

final AppCompatDelegate delegate = getDelegate(); delegate.installViewFactory();

और में AppCompatDelegateImplहैcreateView

    if (mAppCompatViewInflater == null) {
        mAppCompatViewInflater = new AppCompatViewInflater();
    }

यह इन्फ्लोटर AppCompatViewInflaterव्यू का उपयोग करता है, जब AppCompatViewInflatercreateView यह "TextView" के लिए AppCompatTextView का उपयोग करेगा।

public final View createView(){
    ...
    View view = null;
    switch (name) {
        case "TextView":
            view = new AppCompatTextView(context, attrs);
            break;
        case "ImageView":
            view = new AppCompatImageView(context, attrs);
            break;
        case "Button":
            view = new AppCompatButton(context, attrs);
            break;
    ...
}

मेरे प्रोजेक्ट में मैं उपयोग नहीं करता AppCompatActivity, इसलिए मुझे <android.support.v7.widget.AppCompatTextView>xml में उपयोग की आवश्यकता है ।


1
ज्यादातर मामलों में, जब आप सिर्फ "TextView" लिखते हैं, तो इनफ्लो एपकम्पैट टेक्स्ट व्यू का उपयोग करता है, इसलिए आपको ऐसा करने की आवश्यकता नहीं है।
Android डेवलपर

@androiddeveloper लेकिन जब मैं TextView का उपयोग कर रहा हूं, तो काम नहीं कर रहा है।
weei.zh

@androiddeveloper धन्यवाद, कारण मैं उपयोग नहीं कर रहा हूँ AppCompatActivity। AppCompatActivity AppCompatViewInflater इनफ्लोटर लेआउट का उपयोग करें।
weei.zh

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