2

我在我的应用程序中使用默认的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>
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 回答