Android TextView पाठ को औचित्य दें


395

आप TextViewको औचित्य का पाठ कैसे मिलता है (बाएं और दाएं हाथ की तरफ टेक्स्ट फ्लश के साथ)?

मुझे यहां एक संभावित समाधान मिला , लेकिन यह काम नहीं करता है (भले ही आप ऊर्ध्वाधर-केंद्र को केंद्र_वर्तनीय, आदि में बदल दें)।


@Jimbo जवाब सही निश्चित रूप से के लिए काम कर रहा है मेरे मामले पर inputtext और TextView बाईं इनपुट और प्रदर्शन करने के लिए सही से अरबी भाषा के लिए लेकिन इनपुट पाठ के लिए मैं भी गुरुत्वाकर्षण = "सही" जोड़ने के लिए किया था
शरीफ

जवाबों:


239

मुझे विश्वास नहीं है कि Android पूर्ण औचित्य का समर्थन करता है।

UPDATE 2018-01-01 : Android 8.0+ के साथ औचित्य मोडTextView का समर्थन करता है ।


5
आगे के विश्लेषण पर, आप एंड्रॉइड दे सकते हैं: गुरुत्वाकर्षण = "फ़िल_होर क्षैतिज" एक शॉट। यह वर्णित है कि "ऑब्जेक्ट के क्षैतिज आकार को बढ़ाएं यदि आवश्यक हो तो यह पूरी तरह से अपने कंटेनर को भरता है", लेकिन मुझे नहीं पता कि वे कैसे "ग्रो" करते हैं।
कॉमन्सवेयर

8
Android: गुरुत्वाकर्षण = "fill_horporary" भी काम नहीं किया। ऐसा लगता है कि Android सब के बाद औचित्य का समर्थन नहीं करता है, ओह अच्छी तरह से :)

6
नहीं, आप संपत्ति को गुरुत्वाकर्षण की तरह सेट नहीं कर सकते। लेकिन फिर भी आप टेक्स्ट व्यू के बजाय वेबव्यू लेकर अपने टेक्स्ट का औचित्य निर्धारित कर सकते हैं। आप सील . io/2010/12/only-way-how- to- align-text-in-block-in.html का संदर्भ ले सकते हैं । (से चुराई stackoverflow.com/questions/5976627/... )
jcaruso

2
@CommonsWare अब पाठ को सही ठहराने का कोई उचित तरीका है?
जॉन आर।

1
यार, मैं इसे प्राप्त करने के लिए भारी वेबव्यू के साथ रह रहा हूं, और मेरा विश्वास करो, मेरा यूआई कुछ नए सामान के लिए अभी भी एपीआई में जोड़ा गया है, coz यह एक सूची में चैट जैसे घटकों के लिए बहुत खराब है।
nobalG

156

@CommonsWare उत्तर सही है। एंड्रॉइड 8.0+ "पूर्ण औचित्य" (या बस "औचित्य" का समर्थन करता है, क्योंकि इसे कभी-कभी अस्पष्ट रूप से संदर्भित किया जाता है)।

एंड्रॉइड "फ्लश लेफ्ट / राइट टेक्स्ट एलाइनमेंट" का भी समर्थन करता है। भेद के औचित्य पर विकिपीडिया लेख देखें । बहुत से लोग पूर्ण-औचित्य के साथ-साथ बाएँ / दाएँ पाठ संरेखण को शामिल करने के लिए 'औचित्य' की अवधारणा पर विचार करते हैं, यही वह है जो वे अंत में खोजना चाहते हैं जब वे बाएँ / दाएँ पाठ संरेखण करना चाहते हैं। यह उत्तर बताता है कि बाएँ / दाएँ पाठ संरेखण को कैसे प्राप्त करें।

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

XML लेआउट में आप TextView तत्वों को स्वयं (बाएं स्तंभ) को सभी TextViews के अंदर निम्नलिखित विशेषता जोड़कर दाईं ओर संरेखित कर सकते हैं:

<TextView
   ...
   android:layout_gravity="center_vertical|end">
   ...
</TextView>

हालाँकि, यदि पाठ कई पंक्तियों में लिपट जाता है, तो पाठ अभी भी पाठ दृश्य के अंदर बायीं ओर फ्लश होगा। निम्नलिखित विशेषता को जोड़ने से टेक्स्ट के अंदर वास्तविक टेक्स्ट फ्लश राइट एलाइन (रैग्ड लेफ्ट) हो जाता है:

<TextView
   ...
   android:gravity="end">
   ...
</TextView>

तो गुरुत्वाकर्षण विशेषता निर्दिष्ट करती है कि TextView Layout_gravity के अंदर पाठ को कैसे संरेखित करें यह निर्दिष्ट करता है कि TextView तत्व को कैसे संरेखित / लेआउट करें।


12
अगर मैं सही तरीके से समझूं, और इस परीक्षण के परिणामों को देखते हुए, यह सब पाठ को बाएं या दाएं संरेखित करता है। यह पाठ का औचित्य नहीं करता है, क्या यह?
बजे पॉल लामेरट्स्मा

14
अति उत्कृष्ट। बस जोड़ने के लिए, यदि आप केंद्र औचित्य चाहते हैं, तो आप कर सकते हैं android:layout_gravity="center_horizontal|center" android:gravity="center"
लुइस ए। फ्लोरिट

निश्चित रूप से पर मेरे मामले के लिए काम inputtext और TextView बाईं इनपुट और प्रदर्शन करने के लिए सही से अरबी भाषा के लिए
शरीफ

1
यह सिर्फ संरेखण है, औचित्य नहीं। उस विकिपीडिया लिंक को ध्यान से पढ़ें। विभिन्न प्रकार के औचित्य के बीच का अंतर केवल पैराग्राफ की अंतिम पंक्ति को प्रभावित करता है। पैराग्राफ के लिए कोई बाईं / दाईं / केंद्र औचित्य नहीं है कि केवल एक पंक्ति हो।
कारू

फिर भी इसका जवाब यहां क्यों दिया जाए अगर यह नहीं हैjustify
user924

136

Android में पाठ को सही ठहराने के लिए मैंने WebView का उपयोग किया

    setContentView(R.layout.main);

    WebView view = new WebView(this);
    view.setVerticalScrollBarEnabled(false);

    ((LinearLayout)findViewById(R.id.inset_web_view)).addView(view);

    view.loadData(getString(R.string.hello), "text/html; charset=utf-8", "utf-8");

और HTML

<string name="hello">
<![CDATA[
<html>
 <head></head>
 <body style="text-align:justify;color:gray;background-color:black;">
  Lorem ipsum dolor sit amet, consectetur 
  adipiscing elit. Nunc pellentesque, urna
  nec hendrerit pellentesque, risus massa
 </body>
</html>
]]>
</string>

मैं अभी तक इसे साबित करने के लिए चित्र अपलोड नहीं कर सकता, लेकिन "यह मेरे लिए काम करता है"।


3
यहाँ अच्छा समाधान है। FWIW आप अतिरिक्त HTML के अधिकांश की जरूरत नहीं है। टेक्स्ट एलाइन के साथ बॉडी टैग पर्याप्त है।
gnac

5
यह अच्छा काम करता है। ध्यान दें कि आप निम्नलिखित के view.loadData()साथ पृष्ठभूमि को पारदर्शी बना सकते हैं view.setBackgroundColor("#00000000")
पॉल लामेरट्स्मा

हालांकि, मैं इसे कस्टम फ़ॉन्ट / टाइपफेस लोड करने में सफल नहीं रहा हूं। मैंने यह और यह सुझाव दिया है, बिना किसी भाग्य के।
पॉल लामर्ट्स्मा

2
जैसा कि मैंने उन थ्रेड्स में उल्लेख किया है, मुझे एक संकल्प मिला: यदि आप एक HTML फ़ाइल बनाते हैं और इसे संपत्ति में रखते हैं, तो इसे view.loadUrl()काम के माध्यम से लोड किया जाता है, जबकि view.loadData()ऐसा नहीं होता है। मेरे पास कोई सुराग नहीं है कि उत्तरार्द्ध क्यों नहीं है।
पॉल लामार्ट्समा

1
@PaLLammertsma, setBackgroundColor (0x00000000) बल्कि पारदर्शी पृष्ठभूमि सेट करने के लिए सही प्रारूप होगा।
राही

100

UPDATED

हमने इसके लिए एक साधारण वर्ग बनाया है। वर्तमान में दो तरीके हैं जिन्हें आप प्राप्त करना चाहते हैं। दोनों के लिए कोई वेबपेज और सपोर्ट की आवश्यकता नहीं है

पुस्तकालय : https://github.com/bluejamesbond/TextJustify-Android

समर्थन : Android 2.0 से 5.X

सेट अप

// Please visit Github for latest setup instructions.

SCREENSHOT

Comparison.png


वास्तव में एक मदद है, लेकिन इसका उपयोग करते हुए, मेरा टेक्स्ट व्यू मूल प्रारूप नहीं रखता है, मैं इसे परिष्कृत करता हूं: मार्जिन, पाठ शैली, और मुझे लगता है कि पाठ का आकार न तो,
प्लिस

वैसे मैं उन वर्गों की स्थापना नहीं कर सकता। उनमें से किसी के पास कोई भी पैकेटनाम नहीं है, दूसरा कुछ पीले त्रुटि देता है। असल में मैं भरोसा नहीं कर सकता।
मेथमेट

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

4
इस महान साझा पुस्तकालय के लिए धन्यवाद, लेकिन यह फारसी या अरबी पाठ का समर्थन नहीं कर सकता। जब मैं दिशा निर्धारित करता हूं, तो मेरा शब्द अंतिम से शुरू होने के बजाय पिछले से शुरू होता है। मेरा यह अर्थ है: मेरा वचन है: "سلام" और इसका ड्रा इस तरह है: "مالس"। (यदि आप समझ में नहीं आता है तो इस उदाहरण को देखें: मुझे "1234" -> "4321")
नारुतो उज़ुमाकी

1
स्क्रॉलव्यू के आधार पर ... अच्छा समाधान हालांकि खिचड़ी भाषा का कोई भी जवाब नहीं है जो इसे टेक्स्टव्यू के साथ सकारात्मक बनाता है। :(
सुपरयूजर

88

TextViewमें Android Oप्रदान करता है पूर्ण औचित्य (नई टाइपोग्राफ़िक संरेखण) ही।

आपको बस यह करने की आवश्यकता है:

Kotlin

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    textView.justificationMode = JUSTIFICATION_MODE_INTER_WORD
}

जावा

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    textView.setJustificationMode(JUSTIFICATION_MODE_INTER_WORD);
}

डिफ़ॉल्ट है JUSTIFICATION_MODE_NONE


3
चलो आशा करते हैं कि यह फिर से समर्थन पुस्तकालय में पोर्ट हो जाएगा तो ओ :)
स्टीफन हस्टिन

2
pls यहाँ पुस्तकालय जोड़ें !!
कुणाल धरिया

4
XML का उपयोग कैसे करें?
विकाश पराजुली

14
आप एंड्रॉइड का उपयोग कर सकते हैं: xml में justificationMode = "inter_word"।
क्रिश्चियन डी

5
Android के लिए आवश्यक API 26: justificationMode
बिंक

42

आप github में Android प्रोजेक्ट के लिए JustifiedTextView का उपयोग कर सकते हैं । यह एक कस्टम दृश्य है जो आपके लिए उचित पाठ का अनुकरण करता है। यह एंड्रॉइड 2.0+ और दाईं ओर बाईं भाषाओं का समर्थन करता है। यहां छवि विवरण दर्ज करें


यह स्पैनबल स्ट्रिंग का समर्थन नहीं करता है
MSEPhr

हम अपना पाठ कैसे जोड़ सकते हैं?
करण

कृपया गितूब पर नमूना देखें।
सईद ज़रीनफ़ाम

हाय सईद, आपकी मदद के लिए tnx, वहाँ किसी भी तरह से spannable textviews का समर्थन है ?!
हामिद रजा

@SaeedZarinfam मैं "Android के लिए JustifiedTextView" का उपयोग करने की कोशिश की, लेकिन मैं एक्सएमएल टैग ir.noghteh.JustifiedTextView पर त्रुटि मिली होगा यू plz मुझे इस सवाल पर मदद करने के लिए stackoverflow.com/questions/37911376/...
Jumong

30

मैं इसे करने के लिए मूल पाठ पर एक विजेट आधार लिखता हूं।

GitHub


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

अच्छा काम बी.टी.वी. मैं क्या देख रहा था
सुपरयूजर

5
आरटीएल भाषाओं का समर्थन नहीं करता जैसे फारसी
छेद में आग

1
@ फ्रेंक चेंग बहुत उपयोगी पुस्तकालय। मुझे पैराग्राफ के अंत में बहुत सारे स्थान मिलते हैं। मेरे द्वारा यह कैसे किया जा सकता है?
at श्रीनिवासन

1
मेरे लिए काम किया, लेकिन टेक्स्टव्यू की आखिरी लाइन कट गई। मुझे टैक्स्टव्यू के लिए 5 अंक रखने थे।
थ्रकनिरमाना

23

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

इसका सिद्धांत प्रत्येक लाइन के रिक्त स्थान को निश्चित-चौड़ाई वाले इमेजस्पैन (रंग पारदर्शी है) को बदलना है।

public static void justify(final TextView textView) {

    final AtomicBoolean isJustify = new AtomicBoolean(false);

    final String textString = textView.getText().toString();

    final TextPaint textPaint = textView.getPaint();

    final SpannableStringBuilder builder = new SpannableStringBuilder();

    textView.post(new Runnable() {
        @Override
        public void run() {

            if (!isJustify.get()) {

                final int lineCount = textView.getLineCount();
                final int textViewWidth = textView.getWidth();

                for (int i = 0; i < lineCount; i++) {

                    int lineStart = textView.getLayout().getLineStart(i);
                    int lineEnd = textView.getLayout().getLineEnd(i);

                    String lineString = textString.substring(lineStart, lineEnd);

                    if (i == lineCount - 1) {
                        builder.append(new SpannableString(lineString));
                        break;
                    }

                    String trimSpaceText = lineString.trim();
                    String removeSpaceText = lineString.replaceAll(" ", "");

                    float removeSpaceWidth = textPaint.measureText(removeSpaceText);
                    float spaceCount = trimSpaceText.length() - removeSpaceText.length();

                    float eachSpaceWidth = (textViewWidth - removeSpaceWidth) / spaceCount;

                    SpannableString spannableString = new SpannableString(lineString);
                    for (int j = 0; j < trimSpaceText.length(); j++) {
                        char c = trimSpaceText.charAt(j);
                        if (c == ' ') {
                            Drawable drawable = new ColorDrawable(0x00ffffff);
                            drawable.setBounds(0, 0, (int) eachSpaceWidth, 0);
                            ImageSpan span = new ImageSpan(drawable);
                            spannableString.setSpan(span, j, j + 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                        }
                    }

                    builder.append(spannableString);
                }

                textView.setText(builder);
                isJustify.set(true);
            }
        }
    });
}

मैंने GitHub पर कोड डाला: https://github.com/twiceyuan/TextJustification

अवलोकन:

अवलोकन


1
एक्सएमएल पूर्वावलोकन में काम नहीं कर रहा है, लेकिन एक असली डिवाइस के साथ बढ़िया काम कर रहा है :)
pgreze

15

XML लेआउट: TextView के बजाय WebView घोषित करें

<WebView
 android:id="@+id/textContent"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" />

जावा कोड: वेबव्यू में टेक्स्ट डेटा सेट करें

WebView view = (WebView) findViewById(R.id.textContent);
String text;
text = "<html><body><p align=\"justify\">";
text+= "This is the text will be justified when displayed!!!";
text+= "</p></body></html>";
view.loadData(text, "text/html", "utf-8");

इससे आपकी समस्या हल हो सकती है। इसके फुल ने मेरे लिए काम किया।


9

यहां बताया गया है कि मैंने यह कैसे किया, मुझे लगता है कि मैं सबसे सुंदर तरीका हूं। इस समाधान के साथ, आपके लेआउट में केवल वही चीजें करने की आवश्यकता है:

  • एक अतिरिक्त xmlnsघोषणा जोड़ें
  • TextViewअपने नए नामस्थान पर Android से अपने स्रोत टेक्स्ट नेमस्पेस को बदलें
  • अपने TextViewसाथ बदलेंx.y.z.JustifiedTextView

यहाँ कोड है। मेरे फोन (गैलेक्सी नेक्सस एंड्रॉइड 4.0.2, गैलेक्सी टेओस एंड्रॉइड 2.1) पर पूरी तरह से ठीक काम करता है। निःसंदेह, अपने पैकेज के नाम को आपके साथ बदलने के लिए, निःसंकोच।

/assets/justified_textview.css :

body {
    font-size: 1.0em;
    color: rgb(180,180,180);
    text-align: justify;
}

@media screen and (-webkit-device-pixel-ratio: 1.5) {
    /* CSS for high-density screens */
    body {
        font-size: 1.05em;
    }
}

@media screen and (-webkit-device-pixel-ratio: 2.0) {
    /* CSS for extra high-density screens */
    body {
        font-size: 1.1em;
    }
}

/res/values/attrs.xml :

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="JustifiedTextView">
        <attr name="text" format="reference" />
    </declare-styleable>
</resources>

/res/layout/test.xml :

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:myapp="http://schemas.android.com/apk/res/net.bicou.myapp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <net.bicou.myapp.widget.JustifiedTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            myapp:text="@string/surv1_1" />

    </LinearLayout>
</ScrollView>

/src/net/bicou/myapp/widget/JustifiedTextView.java :

package net.bicou.myapp.widget;

import net.bicou.myapp.R;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.View;
import android.webkit.WebView;

public class JustifiedTextView extends WebView {
    public JustifiedTextView(final Context context) {
        this(context, null, 0);
    }

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

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

        if (attrs != null) {
            final TypedValue tv = new TypedValue();
            final TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.JustifiedTextView, defStyle, 0);
            if (ta != null) {
                ta.getValue(R.styleable.JustifiedTextView_text, tv);

                if (tv.resourceId > 0) {
                    final String text = context.getString(tv.resourceId).replace("\n", "<br />");
                    loadDataWithBaseURL("file:///android_asset/",
                            "<html><head>" +
                                    "<link rel=\"stylesheet\" type=\"text/css\" href=\"justified_textview.css\" />" +
                                    "</head><body>" + text + "</body></html>",

                                    "text/html", "UTF8", null);
                    setTransparentBackground();
                }
            }
        }
    }

    public void setTransparentBackground() {
        try {
            setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        } catch (final NoSuchMethodError e) {
        }

        setBackgroundColor(Color.TRANSPARENT);
        setBackgroundDrawable(null);
        setBackgroundResource(0);
    }
}

एंड्रॉइड 3+ पर पारदर्शी पृष्ठभूमि प्राप्त करने के लिए हमें सॉफ़्टवेयर को रेंडर करने की आवश्यकता है। इसलिए एंड्रॉइड के पुराने संस्करणों के लिए ट्राइ-कैच।

उम्मीद है की यह मदद करेगा!

पुनश्च: अपेक्षित व्यवहार प्राप्त करने के लिए कृपया इसे Android 3+ पर अपनी संपूर्ण गतिविधि में जोड़ने के लिए उपयोगी नहीं हो सकता है:
android:hardwareAccelerated="false"


यह वेबव्यू आधारित समाधान है। किसी एक ने अभी तक टेक्स्टव्यू आधारित पाया है, टेक्स्टव्यू पर विचार करना वेबव्यू और स्क्रोलव्यू की तुलना में हल्का है।
सुपरयूजर



6

मैं इस समस्या को हल करने के लिए अपनी खुद की कक्षा लिखता हूँ, यहाँ यह है कि आपको स्थैतिक औचित्य फ़ंक्शन को कॉल करना होगा जो दो तर्क लेता है

  1. पाठ दृश्य वस्तु
  2. सामग्री चौड़ाई (आपके पाठ दृश्य की कुल चौड़ाई)

//मुख्य गतिविधि

package com.fawad.textjustification;
import android.app.Activity;
import android.database.Cursor;
import android.graphics.Point;
import android.graphics.Typeface;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.Display;
import android.view.Gravity;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {
    static Point size;
    static float density;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Display display = getWindowManager().getDefaultDisplay();
        size=new Point();
        DisplayMetrics dm=new DisplayMetrics();
        display.getMetrics(dm);
        density=dm.density;
        display.getSize(size);


        TextView tv=(TextView)findViewById(R.id.textView1);
        Typeface typeface=Typeface.createFromAsset(this.getAssets(), "Roboto-Medium.ttf");
        tv.setTypeface(typeface);
        tv.setLineSpacing(0f, 1.2f);
        tv.setTextSize(10*MainActivity.density);

        //some random long text
         String myText=getResources().getString(R.string.my_text);

         tv.setText(myText);
        TextJustification.justify(tv,size.x);


    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

// TextJustificationClass

package com.fawad.textjustification;

import java.util.ArrayList;

import android.graphics.Paint;
import android.text.TextUtils;
import android.widget.TextView;

public class TextJustification {

    public static void justify(TextView textView,float contentWidth) {
        String text=textView.getText().toString();
        Paint paint=textView.getPaint();

        ArrayList<String> lineList=lineBreak(text,paint,contentWidth);

        textView.setText(TextUtils.join(" ", lineList).replaceFirst("\\s", ""));
    }


    private static ArrayList<String> lineBreak(String text,Paint paint,float contentWidth){
        String [] wordArray=text.split("\\s"); 
        ArrayList<String> lineList = new ArrayList<String>();
        String myText="";

        for(String word:wordArray){
            if(paint.measureText(myText+" "+word)<=contentWidth)
                myText=myText+" "+word;
            else{
                int totalSpacesToInsert=(int)((contentWidth-paint.measureText(myText))/paint.measureText(" "));
                lineList.add(justifyLine(myText,totalSpacesToInsert));
                myText=word;
            }
        }
        lineList.add(myText);
        return lineList;
    }

    private static String justifyLine(String text,int totalSpacesToInsert){
        String[] wordArray=text.split("\\s");
        String toAppend=" ";

        while((totalSpacesToInsert)>=(wordArray.length-1)){
            toAppend=toAppend+" ";
            totalSpacesToInsert=totalSpacesToInsert-(wordArray.length-1);
        }
        int i=0;
        String justifiedText="";
        for(String word:wordArray){
            if(i<totalSpacesToInsert)
                justifiedText=justifiedText+word+" "+toAppend;

            else                
                justifiedText=justifiedText+word+toAppend;

            i++;
        }

        return justifiedText;
    }

}

// एक्सएमएल

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



    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"

             >
            <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />
        </LinearLayout>
    </ScrollView>

</RelativeLayout>

इस उदाहरण को कम से कम "\ n" या System.getProperty ("line.separator") के सम्मान के लिए पूरा करें :)
ceph3us

5

FILL_HORIZONTALके बराबर है CENTER_HORIZONTAL। आप इस कोड स्निपेट को टेक्स्टव्यू के सोर्स कोड में देख सकते हैं:

case Gravity.CENTER_HORIZONTAL:
case Gravity.FILL_HORIZONTAL:
    return (mLayout.getLineWidth(0) - ((mRight - mLeft) -
            getCompoundPaddingLeft() - getCompoundPaddingRight())) /
            getHorizontalFadingEdgeLength();

4

इस समस्या के लिए एक कस्टम व्यू है, यह कस्टम टेक्स्ट व्यू जस्टिफाइड टेक्स्ट व्यू का समर्थन करता है।

इस पर लूट: JustifiedTextView

import java.util.ArrayList;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.text.TextPaint;
import android.view.View;

public class JustifiedTextView extends View {
        String text;
        ArrayList<Line> linesCollection = new ArrayList<Line>();
        TextPaint textPaint;
        Typeface font;
        int textColor;
        float textSize = 42f, lineHeight = 57f, wordSpacing = 15f, lineSpacing = 15f;
        float onBirim, w, h;
        float leftPadding, rightPadding;

        public JustifiedTextView(Context context, String text) {
                super(context);
                this.text = text;
                init();
        }

        private void init() {
                textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
                textColor = Color.BLACK;
        }

        @Override
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
                super.onMeasure(widthMeasureSpec, heightMeasureSpec);

                if (font != null) {
                        font = Typeface.createFromAsset(getContext().getAssets(), "font/Trykker-Regular.ttf");
                        textPaint.setTypeface(font);
                }
                textPaint.setColor(textColor);

                int minw = getPaddingLeft() + getPaddingRight() + getSuggestedMinimumWidth();
                w = resolveSizeAndState(minw, widthMeasureSpec, 1);
                h = MeasureSpec.getSize(widthMeasureSpec);

                onBirim = 0.009259259f * w;
                lineHeight = textSize + lineSpacing;
                leftPadding = 3 * onBirim + getPaddingLeft();
                rightPadding = 3 * onBirim + getPaddingRight();

                textPaint.setTextSize(textSize);

                wordSpacing = 15f;
                Line lineBuffer = new Line();
                this.linesCollection.clear();
                String[] lines = text.split("\n");
                for (String line : lines) {
                        String[] words = line.split(" ");
                        lineBuffer = new Line();
                        float lineWidth = leftPadding + rightPadding;
                        float totalWordWidth = 0;
                        for (String word : words) {
                                float ww = textPaint.measureText(word) + wordSpacing;
                                if (lineWidth + ww + (lineBuffer.getWords().size() * wordSpacing) > w) {// is
                                        lineBuffer.addWord(word);
                                        totalWordWidth += textPaint.measureText(word);
                                        lineBuffer.setSpacing((w - totalWordWidth - leftPadding - rightPadding) / (lineBuffer.getWords().size() - 1));
                                        this.linesCollection.add(lineBuffer);
                                        lineBuffer = new Line();
                                        totalWordWidth = 0;
                                        lineWidth = leftPadding + rightPadding;
                                } else {
                                        lineBuffer.setSpacing(wordSpacing);
                                        lineBuffer.addWord(word);
                                        totalWordWidth += textPaint.measureText(word);
                                        lineWidth += ww;
                                }
                        }
                        this.linesCollection.add(lineBuffer);
                }
                setMeasuredDimension((int) w, (int) ((this.linesCollection.size() + 1) * lineHeight + (10 * onBirim)));
        }

        @Override
        protected void onDraw(Canvas canvas) {
                super.onDraw(canvas);
                canvas.drawLine(0f, 10f, getMeasuredWidth(), 10f, textPaint);
                float x, y = lineHeight + onBirim;
                for (Line line : linesCollection) {
                        x = leftPadding;
                        for (String s : line.getWords()) {
                                canvas.drawText(s, x, y, textPaint);
                                x += textPaint.measureText(s) + line.spacing;
                        }
                        y += lineHeight;
                }
        }

        public String getText() {
                return text;
        }

        public void setText(String text) {
                this.text = text;
        }

        public Typeface getFont() {
                return font;
        }

        public void setFont(Typeface font) {
                this.font = font;
        }

        public float getLineHeight() {
                return lineHeight;
        }

        public void setLineHeight(float lineHeight) {
                this.lineHeight = lineHeight;
        }

        public float getLeftPadding() {
                return leftPadding;
        }

        public void setLeftPadding(float leftPadding) {
                this.leftPadding = leftPadding;
        }

        public float getRightPadding() {
                return rightPadding;
        }

        public void setRightPadding(float rightPadding) {
                this.rightPadding = rightPadding;
        }

        public void setWordSpacing(float wordSpacing) {
                this.wordSpacing = wordSpacing;
        }

        public float getWordSpacing() {
                return wordSpacing;
        }

        public float getLineSpacing() {
                return lineSpacing;
        }

        public void setLineSpacing(float lineSpacing) {
                this.lineSpacing = lineSpacing;
        }

        class Line {
                ArrayList<String> words = new ArrayList<String>();
                float spacing = 15f;

                public Line() {
                }

                public Line(ArrayList<String> words, float spacing) {
                        this.words = words;
                        this.spacing = spacing;
                }

                public void setSpacing(float spacing) {
                        this.spacing = spacing;
                }

                public float getSpacing() {
                        return spacing;
                }

                public void addWord(String s) {
                        words.add(s);
                }

                public ArrayList<String> getWords() {
                        return words;
                }
        }
}

अपने src फ़ोल्डर में ऊपर की कक्षा जोड़ें और अपने लेआउट में जोड़ने के लिए इस नमूना कोड का उपयोग करें:

JustifiedTextView jtv= new JustifiedTextView(getApplicationContext(), "Lorem ipsum dolor sit amet... ");
LinearLayout place = (LinearLayout) findViewById(R.id.book_profile_content);
place.addView(jtv);

4

यहाँ जीथुब में देखें

बस अपनी परियोजना में दो फ़ाइलें "TextJustifyUtils.java" और "TextViewEx.java" आयात करें।

public class TextJustifyUtils {
    // Please use run(...) instead
    public static void justify(TextView textView) {
        Paint paint = new Paint();

        String[] blocks;
        float spaceOffset = 0;
        float textWrapWidth = 0;

        int spacesToSpread;
        float wrappedEdgeSpace;
        String block;
        String[] lineAsWords;
        String wrappedLine;
        String smb = "";
        Object[] wrappedObj;

        // Pull widget properties
        paint.setColor(textView.getCurrentTextColor());
        paint.setTypeface(textView.getTypeface());
        paint.setTextSize(textView.getTextSize());

        textWrapWidth = textView.getWidth();
        spaceOffset = paint.measureText(" ");
        blocks = textView.getText().toString().split("((?<=\n)|(?=\n))");

        if (textWrapWidth < 20) {
            return;
        }

        for (int i = 0; i < blocks.length; i++) {
            block = blocks[i];

            if (block.length() == 0) {
                continue;
            } else if (block.equals("\n")) {
                smb += block;
                continue;
            }

            block = block.trim();

            if (block.length() == 0)
                continue;

            wrappedObj = TextJustifyUtils.createWrappedLine(block, paint,
                    spaceOffset, textWrapWidth);
            wrappedLine = ((String) wrappedObj[0]);
            wrappedEdgeSpace = (Float) wrappedObj[1];
            lineAsWords = wrappedLine.split(" ");
            spacesToSpread = (int) (wrappedEdgeSpace != Float.MIN_VALUE ? wrappedEdgeSpace
                    / spaceOffset
                    : 0);

            for (String word : lineAsWords) {
                smb += word + " ";

                if (--spacesToSpread > 0) {
                    smb += " ";
                }
            }

            smb = smb.trim();

            if (blocks[i].length() > 0) {
                blocks[i] = blocks[i].substring(wrappedLine.length());

                if (blocks[i].length() > 0) {
                    smb += "\n";
                }

                i--;
            }
        }

        textView.setGravity(Gravity.LEFT);
        textView.setText(smb);
    }

    protected static Object[] createWrappedLine(String block, Paint paint,
            float spaceOffset, float maxWidth) {
        float cacheWidth = maxWidth;
        float origMaxWidth = maxWidth;

        String line = "";

        for (String word : block.split("\\s")) {
            cacheWidth = paint.measureText(word);
            maxWidth -= cacheWidth;

            if (maxWidth <= 0) {
                return new Object[] { line, maxWidth + cacheWidth + spaceOffset };
            }

            line += word + " ";
            maxWidth -= spaceOffset;

        }

        if (paint.measureText(block) <= origMaxWidth) {
            return new Object[] { block, Float.MIN_VALUE };
        }

        return new Object[] { line, maxWidth };
    }

    final static String SYSTEM_NEWLINE = "\n";
    final static float COMPLEXITY = 5.12f; // Reducing this will increase
                                            // efficiency but will decrease
                                            // effectiveness
    final static Paint p = new Paint();

    public static void run(final TextView tv, float origWidth) {
        String s = tv.getText().toString();
        p.setTypeface(tv.getTypeface());
        String[] splits = s.split(SYSTEM_NEWLINE);
        float width = origWidth - 5;
        for (int x = 0; x < splits.length; x++)
            if (p.measureText(splits[x]) > width) {
                splits[x] = wrap(splits[x], width, p);
                String[] microSplits = splits[x].split(SYSTEM_NEWLINE);
                for (int y = 0; y < microSplits.length - 1; y++)
                    microSplits[y] = justify(removeLast(microSplits[y], " "),
                            width, p);
                StringBuilder smb_internal = new StringBuilder();
                for (int z = 0; z < microSplits.length; z++)
                    smb_internal.append(microSplits[z]
                            + ((z + 1 < microSplits.length) ? SYSTEM_NEWLINE
                                    : ""));
                splits[x] = smb_internal.toString();
            }
        final StringBuilder smb = new StringBuilder();
        for (String cleaned : splits)
            smb.append(cleaned + SYSTEM_NEWLINE);
        tv.setGravity(Gravity.LEFT);
        tv.setText(smb);
    }

    private static String wrap(String s, float width, Paint p) {
        String[] str = s.split("\\s"); // regex
        StringBuilder smb = new StringBuilder(); // save memory
        smb.append(SYSTEM_NEWLINE);
        for (int x = 0; x < str.length; x++) {
            float length = p.measureText(str[x]);
            String[] pieces = smb.toString().split(SYSTEM_NEWLINE);
            try {
                if (p.measureText(pieces[pieces.length - 1]) + length > width)
                    smb.append(SYSTEM_NEWLINE);
            } catch (Exception e) {
            }
            smb.append(str[x] + " ");
        }
        return smb.toString().replaceFirst(SYSTEM_NEWLINE, "");
    }

    private static String removeLast(String s, String g) {
        if (s.contains(g)) {
            int index = s.lastIndexOf(g);
            int indexEnd = index + g.length();
            if (index == 0)
                return s.substring(1);
            else if (index == s.length() - 1)
                return s.substring(0, index);
            else
                return s.substring(0, index) + s.substring(indexEnd);
        }
        return s;
    }

    private static String justifyOperation(String s, float width, Paint p) {
        float holder = (float) (COMPLEXITY * Math.random());
        while (s.contains(Float.toString(holder)))
            holder = (float) (COMPLEXITY * Math.random());
        String holder_string = Float.toString(holder);
        float lessThan = width;
        int timeOut = 100;
        int current = 0;
        while (p.measureText(s) < lessThan && current < timeOut) {
            s = s.replaceFirst(" ([^" + holder_string + "])", " "
                    + holder_string + "$1");
            lessThan = p.measureText(holder_string) + lessThan
                    - p.measureText(" ");
            current++;
        }
        String cleaned = s.replaceAll(holder_string, " ");
        return cleaned;
    }

    private static String justify(String s, float width, Paint p) {
        while (p.measureText(s) < width) {
            s = justifyOperation(s, width, p);
        }
        return s;
    }
}

तथा

public class TextViewEx extends TextView {
    private Paint paint = new Paint();

    private String[] blocks;
    private float spaceOffset = 0;
    private float horizontalOffset = 0;
    private float verticalOffset = 0;
    private float horizontalFontOffset = 0;
    private float dirtyRegionWidth = 0;
    private boolean wrapEnabled = false;
    int left, top, right, bottom = 0;
    private Align _align = Align.LEFT;
    private float strecthOffset;
    private float wrappedEdgeSpace;
    private String block;
    private String wrappedLine;
    private String[] lineAsWords;
    private Object[] wrappedObj;

    private Bitmap cache = null;
    private boolean cacheEnabled = false;

    public TextViewEx(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        // set a minimum of left and right padding so that the texts are not too
        // close to the side screen
        // this.setPadding(10, 0, 10, 0);
    }

    public TextViewEx(Context context, AttributeSet attrs) {
        super(context, attrs);
        // this.setPadding(10, 0, 10, 0);
    }

    public TextViewEx(Context context) {
        super(context);
        // this.setPadding(10, 0, 10, 0);
    }

    @Override
    public void setPadding(int left, int top, int right, int bottom) {
        // TODO Auto-generated method stub
        super.setPadding(left + 10, top, right + 10, bottom);
    }

    @Override
    public void setDrawingCacheEnabled(boolean cacheEnabled) {
        this.cacheEnabled = cacheEnabled;
    }

    public void setText(String st, boolean wrap) {
        wrapEnabled = wrap;
        super.setText(st);
    }

    public void setTextAlign(Align align) {
        _align = align;
    }

    @SuppressLint("NewApi")
    @Override
    protected void onDraw(Canvas canvas) {
        // If wrap is disabled then,
        // request original onDraw
        if (!wrapEnabled) {
            super.onDraw(canvas);
            return;
        }

        // Active canas needs to be set
        // based on cacheEnabled
        Canvas activeCanvas = null;

        // Set the active canvas based on
        // whether cache is enabled
        if (cacheEnabled) {

            if (cache != null) {
                // Draw to the OS provided canvas
                // if the cache is not empty
                canvas.drawBitmap(cache, 0, 0, paint);
                return;
            } else {
                // Create a bitmap and set the activeCanvas
                // to the one derived from the bitmap
                cache = Bitmap.createBitmap(getWidth(), getHeight(),
                        Config.ARGB_4444);
                activeCanvas = new Canvas(cache);
            }
        } else {
            // Active canvas is the OS
            // provided canvas
            activeCanvas = canvas;
        }

        // Pull widget properties
        paint.setColor(getCurrentTextColor());
        paint.setTypeface(getTypeface());
        paint.setTextSize(getTextSize());
        paint.setTextAlign(_align);
        paint.setFlags(Paint.ANTI_ALIAS_FLAG);

        // minus out the paddings pixel
        dirtyRegionWidth = getWidth() - getPaddingLeft() - getPaddingRight();
        int maxLines = Integer.MAX_VALUE;
        int currentapiVersion = android.os.Build.VERSION.SDK_INT;
        if (currentapiVersion >= android.os.Build.VERSION_CODES.JELLY_BEAN) {
            maxLines = getMaxLines();
        }
        int lines = 1;
        blocks = getText().toString().split("((?<=\n)|(?=\n))");
        verticalOffset = horizontalFontOffset = getLineHeight() - 0.5f; // Temp
                                                                        // fix
        spaceOffset = paint.measureText(" ");

        for (int i = 0; i < blocks.length && lines <= maxLines; i++) {
            block = blocks[i];
            horizontalOffset = 0;

            if (block.length() == 0) {
                continue;
            } else if (block.equals("\n")) {
                verticalOffset += horizontalFontOffset;
                continue;
            }

            block = block.trim();

            if (block.length() == 0) {
                continue;
            }

            wrappedObj = TextJustifyUtils.createWrappedLine(block, paint,
                    spaceOffset, dirtyRegionWidth);

            wrappedLine = ((String) wrappedObj[0]);
            wrappedEdgeSpace = (Float) wrappedObj[1];
            lineAsWords = wrappedLine.split(" ");
            strecthOffset = wrappedEdgeSpace != Float.MIN_VALUE ? wrappedEdgeSpace
                    / (lineAsWords.length - 1)
                    : 0;

            for (int j = 0; j < lineAsWords.length; j++) {
                String word = lineAsWords[j];
                if (lines == maxLines && j == lineAsWords.length - 1) {
                    activeCanvas.drawText("...", horizontalOffset,
                            verticalOffset, paint);

                } else if (j == 0) {
                    // if it is the first word of the line, text will be drawn
                    // starting from right edge of textview
                    if (_align == Align.RIGHT) {
                        activeCanvas.drawText(word, getWidth()
                                - (getPaddingRight()), verticalOffset, paint);
                        // add in the paddings to the horizontalOffset
                        horizontalOffset += getWidth() - (getPaddingRight());
                    } else {
                        activeCanvas.drawText(word, getPaddingLeft(),
                                verticalOffset, paint);
                        horizontalOffset += getPaddingLeft();
                    }

                } else {
                    activeCanvas.drawText(word, horizontalOffset,
                            verticalOffset, paint);
                }
                if (_align == Align.RIGHT)
                    horizontalOffset -= paint.measureText(word) + spaceOffset
                            + strecthOffset;
                else
                    horizontalOffset += paint.measureText(word) + spaceOffset
                            + strecthOffset;
            }

            lines++;

            if (blocks[i].length() > 0) {
                blocks[i] = blocks[i].substring(wrappedLine.length());
                verticalOffset += blocks[i].length() > 0 ? horizontalFontOffset
                        : 0;
                i--;
            }
        }

        if (cacheEnabled) {
            // Draw the cache onto the OS provided
            // canvas.
            canvas.drawBitmap(cache, 0, 0, paint);
        }
    }
}

अब, यदि आप सामान्य textView का उपयोग करते हैं जैसे:

<TextView
                android:id="@+id/original"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/lorum_ipsum" />

बस उपयोग करें

<yourpackagename.TextViewEx
                android:id="@+id/changed"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/lorum_ipsum" />

एक चर को परिभाषित करें और सही होने का औचित्य निर्धारित करें,

TextViewEx changed = (TextViewEx) findViewById(R.id.changed);
changed.setText(getResources().getString(R.string.lorum_ipsum),true);

बोल्ड टेक्स्ट काम नहीं कर रहा है, कृपया मदद करें यदि आपके पास इसके लिए कोई फिक्स है?
प्रवीणब सिप

4

Android पाठ XMLView के लिए औचित्य साबित

बस XML में Android पाठ-औचित्य का उपयोग करें। आप बस टेक्स्टव्यू विजेट में लागू कर सकते हैं।

 <TextView
    android:justificationMode="inter_word"
/>

डिफ़ॉल्ट है android:justificationMode="none"


2

मुझे लगता है कि दो विकल्प हैं:

  • Pango की तरह कुछ का उपयोग करें जो NDK के माध्यम से इसमें माहिर हैं और एक OpenGL या अन्य सतह पर पाठ रेंडर करते हैं।

  • शब्दों की लंबाई पाने के लिए और कस्टम रूप में एक कैनवस पर मैन्युअल रूप से उन्हें बिछाने के लिए पेंट.measureText () और दोस्तों का उपयोग करें ।


2

एंड्रॉइड पर, टेक्स्ट को सही ठहराने के लिए और बैकग्राउंड कलर का ट्रंकेशन न हो, इसके लिए प्रयास करें, इसने मेरे लिए काम किया, एंड्रॉइड, एफएफ, और क्रोम पर लगातार परिणाम तैयार किए, लेकिन आपको उस स्पेस को मापना होगा जो टेक्स्ट के लिए बीच में बचा है। पैडिंग की गणना करते समय।

<td style="font-family:Calibri,Arial;
    font-size:15px;
    font-weight:800;
    background-color:#f5d5fd;
    color:black;
    border-style:solid;
    border-width:1px;
    border-color:#bd07eb;
    padding-left:10px;
    padding-right:1000px;
    padding-top:3px;
    padding-bottom:3px;
>

हैक वह है padding-right:1000px;जो पाठ को चरम बाईं ओर धकेलता है।

सीएसएस या HTML में बाएं या न्यायोचित कोड के लिए कोई भी प्रयास एक पृष्ठभूमि में परिणाम देता है जो केवल आधी चौड़ाई है।



1

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


वह किया जा सकता है। कर सकते हैं लेकिन हम की पृष्ठभूमि सेट WebView transparent। मेरा बैकग्राउंड इमेज है।
मि। इंडिया

मुझे नहीं लगता कि यह मेमोरी वार हो सकता है।
सुपरयूजर

1

नीचे दिए गए लिंक में इस समाधान का प्रयास करें कि प्रोजेक्ट फ़ोल्डर में उस वर्ग को बनाएं और उसका उपयोग करें। यह मेरे लिए ठीक काम करता है :)

किसी WebView का उपयोग करके, लेकिन TextView जैसे इंटरफ़ेस को प्रस्तुत करते हुए Android ऐप में टेक्स्ट को सही ठहराएं?


कृपया कुछ विवरण दें।
सैयदा ज़ूनैरा

1

TextView सामग्री औचित्य: इसके आसान लोग बस अपने TextView टैग के भीतर android: justificationMode = "inter_word" का उपयोग करते हैं।

 <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="92dp"
    android:text="@string/contents"
    android:layout_margin="20dp"
    android:justificationMode="inter_word"
     />

-4

<का उपयोग करके प्रयास करें RelativeLayout >(fill_parent के लिए सुनिश्चित करें), तो बस जोड़ेंandroid:layout_alignParentLeft="true" और

android:layout_alignParentRight="true" तत्वों को आप बाहर बाएँ और दाएँ पर चाहेंगे।

BLAM, उचित!


यहाँ शानदार उदाहरण: stackoverflow.com/questions/2099249/…
esharp

3
अभी भी वह नहीं है जो वह ढूंढ रहा है। विकिपीडिया पर औचित्य देखें: en.wikipedia.org/wiki/Justification_(typesetting)
केविन कोप्पॉक

यह एक औचित्य नहीं है
अरश हातमी

-5

आपको सेट करना होगा

android:layout_height="wrap_content"

तथा

android:layout_centerInParent="true"

11
यह उस पाठ को केन्द्रित करता है जो पूर्ण न्यायसंगत नहीं है
Janusz

-12

यह वास्तव में आपके पाठ को सही नहीं करता है लेकिन

android:gravity="center_horizontal"

आपके पास सबसे अच्छा विकल्प है।


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

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