Android: html में strings.xml


92

मैं उदाहरण के लिए यह html कोड प्रदर्शित करना चाहूंगा:

<body>
    <p><b>Hello World</b></p>
    <p>This is a test of the URL <a href="http://www.example.com"> Example</a></p>
    <p><b>This text is bold</b></p>
    <p><em>This text is emphasized</em></p>
    <p><code>This is computer output</code></p>
    <p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
</body>

मैं संसाधनों में HTML घोषित करके इसे एक डायलॉग पर प्रदर्शित करना चाहता हूं strings.xml। मैं यह कैसे कर सकता हूं?


जवाबों:


218

Strings.xml में html स्रोत कोड जोड़ने का सबसे अच्छा तरीका उपयोग करना है <![CDATA[html source code]]>। यहाँ एक उदाहरण है:

<string name="html"><![CDATA[<p>Text</p>]]></string> 

तब आप इस HTML को TextView का उपयोग करके प्रदर्शित कर सकते हैं:

myTextView.setText(Html.fromHtml(getString(R.string.html)));

यदि आपके html में लिंक हैं और आप उन्हें क्लिक करने योग्य बनाना चाहते हैं, तो इस विधि का उपयोग करें:

myTextView.setMovementMethod(LinkMovementMethod.getInstance());

9
यदि आप इसके बजाय सिर्फ CDATA के बिना HTML का उपयोग कर सकते हैं : stackoverflow.com/a/18199543/89818getText()getString()
caw

16
हां, लेकिन CDATAआपके द्वारा शामिल किए गए वास्तविक HTML के साथ बहुत आसान है - सभी <,>, आदि का अनुवाद करने की कोई आवश्यकता नहीं है बस असली HTML की प्रतिलिपि बनाएँ, और अपने स्ट्रिंग्स में पेस्ट करें। xml
रिचर्ड ले मेसुरियर

धन्यवाद, अच्छा काम करता है। मैं सिर्फ यह जानना चाहूंगा कि टेक्स्टव में टेक्स्ट को लंबवत कैसे केंद्रित किया जाए।
हरमन

7
वह पाठ चुनें जिसके लिए आप CDATA चाहते हैं .. और ctrl + alt + T -> 'Surrounf with CDATA सेक्शन' चुनें
प्रशांत जाजल

क्षमा करें, लेकिन यह काम नहीं करता है। केवल मान्य समाधान मैंने काम कर रहा है wih string, u, i और Html.from के लिए सभी समर्थित टैग, wsanville से एक है, इसलिए HTML टैग को खोलने और बंद करने के लिए & lt और & gt का उपयोग करें।
पीटर

27

यहाँ ज्यादातर उदाहरण हैं। मुझे नहीं लगता कि preटैग समर्थित है।

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

यह strings.xmlफाइल है:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">Formatting</string>
    <string name="link">&lt;b&gt;Hello World&lt;/b&gt; This is a test of the URL &lt;a href="http://www.example.com/"&gt;Example&lt;/a&gt;</string>
    <string name="bold">&lt;b&gt;This text is bold&lt;/b&gt;</string>
    <string name="emphasis">&lt;em&gt;This text is emphasized&lt;/em&gt;</string>
    <string name="sup">This is &lt;sub&gt;subscript&lt;/sub&gt; and &lt;sup&gt;superscript&lt;/sup&gt;</string>
</resources>

यहाँ लेआउट है। लिंक के लिए ध्यान दें वास्तव में क्लिक करने योग्य होने के लिए, आवश्यक अतिरिक्त काम का एक सा है:

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

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <TextView
            android:id="@+id/test1"
            android:linksClickable="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="12dp"
            android:text=""
            android:textAppearance="?android:attr/textAppearanceMedium"/>
        <TextView
            android:id="@+id/test2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="12dp"
            android:text=""
            android:textAppearance="?android:attr/textAppearanceMedium"/>
        <TextView
            android:id="@+id/test3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="12dp"
            android:text=""
            android:textAppearance="?android:attr/textAppearanceMedium"/>
        <TextView
            android:id="@+id/test4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="12dp"
            android:text=""
            android:textAppearance="?android:attr/textAppearanceMedium"/>
    </LinearLayout>
</ScrollView>

अंत में, कोड:

TextView test1 = (TextView)findViewById(R.id.test1);
Spanned spanned = Html.fromHtml(getString(R.string.link));
test1.setMovementMethod(LinkMovementMethod.getInstance());
test1.setText(spanned);

TextView test2 = (TextView)findViewById(R.id.test2);
test2.setText(Html.fromHtml(getString(R.string.bold)));

TextView test3 = (TextView)findViewById(R.id.test3);
test3.setText(Html.fromHtml(getString(R.string.emphasis)));

TextView test4 = (TextView)findViewById(R.id.test4);
test4.setText(Html.fromHtml(getString(R.string.sup)));

भगवान का शुक्र है कि इसका उपयोग करना संभव है & lt; और & gt; बहुत अच्छा काम करता है।
टॉरस्टेन ओजापर्व

6

String.xml में HTML इकाइयाँ हो सकती हैं, जैसे:

<resources>
    <string name="hello_world">&lt;span&gt;</string>
</resources>

आपके कोड में: getResources().getString(R.string.hello_world);का मूल्यांकन करेगा "<span>"। आप इस तरह से HTML स्वरूपित पाठ का उपयोग कर सकते हैं:

TextView helloWorld = (TextView)findViewById(R.id.hello_world);
helloWorld.setText(Html.fromHtml(getString(R.string.hello_world)));

3

XML संसाधन प्रणाली द्वारा समर्थित सभी स्टाइल को Android प्रलेखन में समझाया गया है।

स्ट्रिंग संसाधन: स्वरूपण और स्टाइलिंग

वहाँ शामिल कुछ भी इस्तेमाल किया जा सकता है और सीधे सेट किया जा सकता है TextView। यदि आपको आगे HTML मार्कअप का उपयोग करने की आवश्यकता है, तो आपको संसाधन में कच्चे एचटीएमएल (बचने वाले पात्रों के साथ &lt;, &gt;और ऐसे) को संसाधन में रखना होगा और संपूर्ण चीज़ को एक में लोड करना होगा WebView


2

यह मेरे लिए काम किया:

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

<string name="app_name">Sangamner College</string>
<string name="about_desc"><![CDATA[In order to make higher education available in the rural environment such as of Sangamner, Shikshan Prasarak Sanstha was established in 1960. Sangamner College was established by Shikshan Prasarak Sanstha, Sangamner on 23rd January 1961 on the auspicious occasion of Birth Anniversary of Netaji Subhashchandra Bose.The Arts and Commerce courses were commenced in June 1961 and in June 1965 Science courses were introduced. When Sangamner College was founded forty years ago, in 1961, there was no college available to the rural youth of this region. <br><br></>The college was founded with the aim of upliftment of the disadvantageous rural youth in all respects. On one hand, we are aware of the social circumstances prevailing in the rural area where we are working. So, we offer the elective option to students, which are favourable to the local atmosphere. On the other hand, we want to academically empower the aspiring youth by offering vocational course in Computer Applications to students of Arts &amp; Commerce. B.B.A., B.C.A. and M.C.A. courses were started with the same purpose. “Think globally, act locally” is our guiding Principle.]]></string>

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