2

アプリでデフォルトのEditTextコントロールを使用していますが、特に DbTextViewer やインターネット/Chrome ブラウザーが使用しているものと比較すると、フォントと解像度が非常に貧弱に見えます。

このアプリは、スマートフォンではなく、タブレットなどの大画面デバイスで実行することを目的としています。

ここでテキストの外観をどのように改善しますか?

これが私のアプリです 私のアプリ

DbTextEditViewer のほうが見栄えが良い DbText

main.xml

    <EditText
        android:id="@+id/edtx"
        android:inputType="textFilter|textMultiLine"
        android:textSize="10sp" />
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"    
    android:paddingTop="0dp"
    android:paddingBottom="0dp"
    android:paddingLeft="8dp"
    android:paddingRight="8dp"
        android:orientation="horizontal" >
    <Button
            android:id="@+id/button2"
    android:paddingBottom="8dp"      
            android:layout_width="wrap_content"
        android:layout_height="26sp"      
     android:textSize="8sp"      
            android:text="save"/>
  </LinearLayout>
</LinearLayout>
4

1 に答える 1

0

私は間接的に私の質問への答えを見つけました

https://stackoverflow.com/a/6922397/266457 http://developer.android.com/guide/practices/screens_support.html

于 2013-03-09T05:38:58.090 に答える