অ্যান্ড্রয়েড: স্ট্রিং.এক্সএমএলতে এইচটিএমএল


92

আমি উদাহরণ হিসাবে এই এইচটিএমএল কোডটি প্রদর্শন করতে চাই:

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

আমি সংস্থানগুলিতে এইচটিএমএল ঘোষণা করে এটি একটি ডায়ালগে প্রদর্শন করতে চাই strings.xml। আমি এটা কিভাবে করবো?


উত্তর:


219

স্ট্রিং.এক্সএমএলতে এইচটিএমএল উত্স কোড যুক্ত করার সর্বোত্তম উপায়টি হ'ল ব্যবহার করা <![CDATA[html source code]]>। এখানে একটি উদাহরণ:

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

তারপরে আপনি টেক্সটভিউতে এই এইচটিএমএলটি প্রদর্শন করতে পারেন:

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

যদি আপনার এইচটিএমএলে লিঙ্ক থাকে এবং আপনি সেগুলি ক্লিকযোগ্য হতে চান তবে এই পদ্ধতিটি ব্যবহার করুন:

myTextView.setMovementMethod(LinkMovementMethod.getInstance());

9
আপনি কেবল পরিবর্তে ব্যবহার করলে সিডিটিএ ছাড়াই এইচটিএমএল ব্যবহার করতে পারবেন : stackoverflow.com/a/18199543/89818getText()getString()
কা

16
হ্যাঁ, তবে CDATAপ্রকৃত এইচটিএমএল সহ আপনার অন্তর্ভুক্ত করা অনেক সহজ - সমস্ত <,> ইত্যাদি অনুবাদ করার দরকার নেই কেবল আসল এইচটিএমএল অনুলিপি করুন এবং আপনার স্ট্রিং.এক্সএমএলে পেস্ট করুন
রিচার্ড লে ম্যাসুরিয়ার

ধন্যবাদ, ভাল কাজ করে। আমি কেবল পাঠ্যদর্শনটিতে উল্লম্বভাবে পাঠ্যকে কেন্দ্র করে কীভাবে জানতে চাই।
হারমান

7
আপনি যে পাঠ্যটির জন্য সিডিএটিএ চান তা নির্বাচন করুন .. এবং সিটিআরএলটি + টিএল টি টিপুন -> 'সিডিএটিএ বিভাগের সাথে সার্বনফ' নির্বাচন করুন
প্রশান্ত জাজাল

দুঃখিত তবে এটি কাজ করে না। আমি এইচটিএমএল.ফর্মের জন্য wih স্ট্রিং, ইউ, আই এবং সমস্ত সমর্থিত ট্যাগকে খুঁজে পেয়েছি তার একমাত্র বৈধ সমাধান হ'ল উইসনভিলে থেকে এক, সুতরাং এইচটিএমএল ট্যাগটি খোলার এবং বন্ধ করার জন্য & 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)));

Godশ্বরের ধন্যবাদ এটি ব্যবহার সম্ভব to এবং & জিটি; খুব ভাল কাজ করে।
টর্স্টেন ওজাপার্ভ

6

স্ট্রিং.এক্সএমএলে এইচটিএমএল সত্তা থাকতে পারে:

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

আপনার কোডে: getResources().getString(R.string.hello_world);মূল্যায়ন করবে "<span>"। আপনি এই এইচটিএমএল বিন্যাসিত পাঠ্যটি ব্যবহার করতে পারেন:

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

3

এক্সএমএল রিসোর্স সিস্টেম দ্বারা সমর্থিত সমস্ত স্টাইলিং অ্যান্ড্রয়েড ডকুমেন্টেশনে ব্যাখ্যা করা হয়েছে।

স্ট্রিং রিসোর্স: ফর্ম্যাট এবং স্টাইলিং

সেখানে অন্তর্ভুক্ত যে কোনও কিছু ব্যবহার করা যায় এবং সরাসরি সেট করা যায় TextView। আপনার যদি আরও এইচটিএমএল মার্কআপ ব্যবহার করার প্রয়োজন হয় তবে আপনাকে কাঁচা এইচটিএমএল (এর জন্য পালানো অক্ষর সহ &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>

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.