我在我的应用程序中使用默认的EditText控件,字体和分辨率看起来很差,特别是与 DbTextViewer 或 Internet/Chrome 浏览器使用的任何东西相比,它看起来更干净。
该应用程序旨在在平板电脑等大屏幕设备上运行,而不是在手机上运行。
您如何改善此处文本的外观?
这是我的应用程序
DbTextEditViewer 看起来好多了
主要的.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>