对不起,这是一个菜鸟问题,但我不擅长布局。我将如何制作定位 flashlight_button 的布局,以便保留顶部和底部图像视图之间的比例。
在 nexus s (800x480) 上看起来不错,这就是我想要的
...图片 ...
但显然,当我切换到 Galaxy nexus (1280 x 720) 时,它会将中间按钮移动到顶部,就像这样(所以它不会保留 nexus 上设计的顶部和底部边距之间的比率)
...图片...
布局在这里:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:padding="20dp" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="50dp"
android:contentDescription="@string/application_logo_description"
android:src="@drawable/mylight" />
<ImageButton
android:id="@+id/settings_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@null"
android:contentDescription="@string/settings_button_description"
android:src="@drawable/settings_button" />
<ImageButton
android:id="@+id/flashlight_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView1"
android:layout_centerHorizontal="true"
android:background="@null"
android:contentDescription="@string/flashlight_button_description"
android:src="@drawable/flashlight_button_selector" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/ad_button"
android:layout_centerHorizontal="true"
android:contentDescription="@string/powered_by_description"
android:src="@drawable/powered_by" />
<ImageButton
android:id="@+id/ad_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:background="@null"
android:contentDescription="@string/ad_button_description"
android:src="@drawable/freeml" />
所以它只是将顶部和底部的图像视图锚定到父边缘,中间按钮只是使用 layout_maginBottom 按下。我正在为不同的密度和明显的密度像素提供缩放图像来表达尺寸,所以在更大的屏幕上似乎还不够。
这样做的正确方法是什么?不同的 .xml 文件或 .. ?
//对不起,我还不能发布图片,希望你能想象出来。