私は以下のようにテキストレイアウトを編集しています。画面サイズによってハードウェアごとに異なるサイズを提供する方法はありますか?その後、4、私は以下のレイアウトを与えたいインチハードウェアごとに異なるテキストサイズ
<EditText
android:id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:textColor="#800080"
android:text=""
android:hint=" No Operator Precednce yet"
android:cursorVisible="false"
android:textSize="40dip"
/>
と他人のために
<EditText
android:id="@+id/entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:textColor="#800080"
android:text=""
android:hint=" No Operator Precednce yet"
android:cursorVisible="false"
android:textSize="30dip"
/>
こんにちはChristoph、私はそうしましたが、私の場合、値はvaues-xlargeフォルダからは取られません。だから、私はどこで私が間違って行くのを助けることができますか? – Kalpesh
デフォルトの「値」が選択されたときに教えてもらえますか?私は小さなアンドロイドのデバイスは、 "値 - 小さな"を選択し、大きな、xlargeなどのようなものですが、その場合の "値"フォルダが使用されるだろうか? –
は指定されていません。たとえば、値を大きく指定する場合や値を指定する場合などに便利です。大画面の場合は値の大きい項目を使用します - 大、他のすべての項目は "値" – Axarydax