2つの言語(英語とヒンディー語)でサポートする必要があるアプリを開発しています。私は英語でのデザインに精通していますが、ヒンディー語でUIを作成する方法についてはわかりません。
ヒンディー語でAndroidUIを作成する方法を教えてもらえますか......?下の画像のように、名前とパスワードの代わりにヒンディー語の次のXMLファイルが必要です。ヒンディー語の単語を取得する必要があります。ただし、ヒンディー語のテキストは、ユーザー名とパスワードの代わりにボックスが表示されていることを意味します。あなたが下のボタンを見つけることができるように。2つの動的テキストビューを作成しました。英語のテキストは正確に表示されていますが、ヒンディー語のテキスト表示ボックスが表示されます。
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>
出力は下の画像のようにボックスを表示しています