为什么我的Holo Light应用程序模糊不清?

时间:2013-04-04 08:07:37

标签: android android-layout android-theme

我正在学习编写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

我能解决这个问题吗?

1 个答案:

答案 0 :(得分: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