我的应用程序是针对小屏幕手机的,对于最初的发布,我只想升级图形以适应更高分辨率的屏幕。在我尝试任何设置为 600x1024 的 Android 设备(包括 Galaxy Tab 和 Kindle 目标)之前,这一切正常。
图像视图被缩放以填充屏幕,并且未绘制下方的按钮。这只发生在 600x1024 屏幕、仿真和 Eclipses 的 UI 编辑器中。
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearViewCredits"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdge="none"
android:fillViewport="true"
android:scrollbars="none" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/instructions1_ground"
android:orientation="vertical" >
<ImageView
android:id="@+id/instructionsImage"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/instructions1" />
<Button
android:id="@+id/instructionsButton"
android:layout_width="120dp"
android:layout_height="0dp"
android:layout_gravity="center"
android:layout_marginBottom="15dp"
android:layout_weight="1"
android:background="@drawable/sgbutton"
android:onClick="backToMenu"
android:padding="0dp"
android:tag="8"
android:text="@string/button_instructions1"
android:textSize="16sp"
android:textStyle="normal" />
</LinearLayout>