基本上我有一系列的線性佈局圖像。我已將每個圖像瀏覽佈局寬度和佈局高度屬性分別設置爲100dp和50dp(我也嘗試過使用px代替dp,並且我試圖更改圖像瀏覽最大大小),但圖像瀏覽繼續縮放而不是停留在這個固定的大小。防止Android UI縮放
我只是想知道如果有人知道我做錯了什麼?
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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/backgroundtop" android:gravity="bottom">
<FrameLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/frameLayout1">
<ImageView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/imageView3" android:src="@drawable/base" android:layout_gravity="center"></ImageView>
<LinearLayout android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center" android:paddingTop="50px" android:layout_width="match_parent">
<ImageView android:src="@drawable/buttonnews" android:id="@+id/imageView1" android:layout_width="123dp" android:layout_height="49dp" android:scaleType="center"></ImageView>
<ImageView android:id="@+id/imageView2" android:layout_width="163dp" android:layout_height="49dp" android:src="@drawable/buttonevents"></ImageView>
</LinearLayout>
</FrameLayout>
</LinearLayout>
你正在測試什麼設備?你的清單中的minSdkVersion/targetSdkVersion設置爲什麼?如果您省略這兩個聲明,則Android會在運行時假定您的應用程序定位API 1,並縮放您的UI以模擬320x480屏幕。 – adamp 2011-04-09 20:04:48