1

我只是在学习编写 Android 应用程序并且正在使用 Netbeans。我的 main.xml 看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <EditText android:layout_weight="1" 
        android:id="@+id/edit_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
    />
    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
</LinearLayout>

问题是它看起来很模糊,而且 UI 元素真的很大。我在 7 英寸平板电脑上运行它,它看起来像这样:http: //i.imgur.com/eflfJRQ.png

我可以解决这个问题吗?

4

1 回答 1

0

我认为您将手机尺寸布局用于 7 英寸屏幕,这会导致位图缩放和布局模糊。您是否使用过尺寸限定符来支持不同的屏幕尺寸?

res/layout/main_activity.xml           # For handsets (smaller than 600dp available width)
res/layout-sw600dp/main_activity.xml   # For 7” tablets (600dp wide and bigger)
res/layout-sw720dp/main_activity.xml   # For 10” tablets (720dp wide and bigger)

看看这个:Supporting Multiple Screens

于 2013-04-04T08:59:47.447 回答