单个textview的android不同语言

时间:2017-07-04 07:26:40

标签: android localization

如何在不更改系统语言的情况下为单个textview显示多种语言?

enter image description here

这里的捐赠者搜索是单一的textview,一次是英语和马拉地语。

怎么做?

3 个答案:

答案 0 :(得分:0)

您必须在values文件夹中创建一个单独的xml文件,例如:values-in / string(用于hindi),然后在xml文件中添加文本。您可以使用android:text或textView.setText直接显示文本( 。getResources()的getString(R.string.xxxx));下一行使用\ n

参考文献:http://www.androidhive.info/2014/07/android-building-multi-language-supported-app/

您可以直接在xml中编写文本并在textview中显示

答案 1 :(得分:0)

这就是我们如何看待输出

code

output



<string name="doner">Please search donor through code or name \n   (कोड किंवा नावाने दात्याला शोधा)</string>


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="@string/doner"
        android:textColor="@android:color/holo_red_dark"
        android:textSize="18sp" />
</LinearLayout>
&#13;
&#13;
&#13;

doner&#34;&gt;请通过代码或名称搜索捐赠者\ n(更新信息)

答案 2 :(得分:0)

在textview中编写文本时使用/ n,如

 <TextView
            android:id="@+id/check"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/deatils_news_img"
            android:layout_marginRight="10dp"
            android:layout_marginTop="10dp"
            android:textSize="20sp"
            android:text="This is just a text \n یہ صرف ایک متن ہے" 
            android:textColor="@color/colortitle" />