我在我的應用程序的某個活動中運行了幾個圖像瀏覽和一個listview。顯示器在模擬器中看起來很完美,它基本上顯示了一個簡短的字符串,頂部有兩個小圖像,然後是由listview組成的屏幕的其餘部分,但是當我將它放在我的設備(EVO3D)上時,listview被截斷。實際上寬度甚至看起來略微偏離。Android應用程序的高度/寬度在模擬器中不同於設備
這裏是layout.xml文件;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:text="@string/showRunList_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText1">
</TextView>
<ImageView android:contentDescription="@string/auxLogo"
android:id="@+id/imageView1"
android:layout_height="wrap_content"
android:src="@drawable/logo_small"
android:layout_width="wrap_content"
android:layout_gravity="center">
</ImageView>
<ImageView android:contentDescription="@string/auxPhone"
android:id="@+id/imageView2" android:layout_height="wrap_content"
android:src="@drawable/phone" android:layout_width="wrap_content">
</ImageView>
<TextView
android:id="@+id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/main_no_items"/>
<ListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom|right"
/>
</LinearLayout>
謝謝,我今天看了這篇文章。我還創建了一個540x960 @ 256dpi的模擬器。我已經能夠在這個新的AVD中複製這個問題,並且努力嘗試讓它以我想要的方式顯示。值得一提的是,我的主要活動不僅僅是我上面列出的那個。 – Shawn 2012-01-04 01:21:47
好的,我明白了我的定義。我的清單文件中的SDK; 感謝您的協助! –
Shawn
2012-01-04 01:42:42