我正在开发一个需要两种语言(英语和印地语)支持的应用程序。我熟悉英语设计,但对如何在印地语中创建UI不了解。

任何人都可以帮我如何在印地语中创建android UI吗?
我想以下图片中的印地语XML文件代替名称和密码,如下图所示,我需要获取印地语单词。正如您可以在下面找到按钮。创建了两个动态textview。英文文本显示准确,但出现在印地语文本显示框中。

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutbase"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1">
        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30px"
            android:text="Username"/>
        <EditText
            android:id="@+id/editText1"
            android:layout_weight="1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
        </EditText>
    </TableRow>
    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" >
          <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30px"
            android:text="नमस्ते"/>
        <EditText
            android:id="@+id/editText2"
            android:layout_weight="1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
        </EditText>
    </TableRow>
</TableLayout>




输出显示如下图所示的框

最佳答案

您必须下载印地语的.ttf(真型字体)文件,并在项目资产文件夹中将字体名称创建为文件夹名称,然后将印地语_font_file.ttf文件粘贴到资产中的字体文件夹下,并在文本视图中引用和设置字体,如以下代码所示:

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/hindi_font_file.ttf");
TextView tv = (TextView) findViewById(R.id.yourtextview);
tv.setTypeface(tf);
tv.setText("हिंदी");


现在在您的用户界面上显示印地文文本以获取更多详细信息,请尝试按照以下帖子中的说明进行操作

Android Tamil font between english word

这是用于下载印地语ttf文件的link

10-05 19:58