0
針對不同的屏幕密度的工作,我在測試Android的多DPI,並且佈局xml文件似乎是這樣的:浸在XML不能在安卓模擬器
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="@drawable/new_album_bg">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello" />
<RelativeLayout android:gravity="center"
android:paddingTop="400dip" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText android:background="@drawable/name_text_bg"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:gravity="center" />
</RelativeLayout>
</RelativeLayout>
當我在一個480x800的MDPI運行( 160)模擬器(縮放到7英寸),它工作正常,但在480x800的hdpi模擬器上,它將EditText填充到屏幕的近底部,接近600px,是400dip x 240/160?而且,即使我將其縮放到4英寸,它與屏幕大小似乎也沒有什麼區別。如何讓填充在不同的屏幕密度下工作?非常感謝!
喜Labeeb P,使用RES /佈局華電國際就行了!謝謝!但仍然存在一個小問題:dp被放大了1.5倍,因此480x800 240dip屏幕的性能僅爲480x800/1.5,也就是說,屏幕高度僅爲533.33dp,我可以在layout xml中使用它,但不便於使用。有什麼建議麼? – herbertD 2011-03-30 09:27:38