我试图让我的Android应用程序的xml工作,但我有一些问题。我试图在线性布局中并排显示相同大小的图像。它们之间必须有一个边距,左右两侧,顶部。
如何制作这样的xml文件,使其适用于任何屏幕尺寸?
更新:这是我的xml文件的摘录:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="fill_horizontal"
android:gravity="center"
android:orientation="horizontal" >
<ImageView
android:id="@+id/area"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:src="@drawable/area_selector"
android:layout_gravity="left"
android:paddingTop="15dp"/>
<ImageView
android:id="@+id/volume"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:src="@drawable/volume_selector"
android:layout_gravity="left"
android:paddingTop="15dp" />
</LinearLayout>
答案 0 :(得分:7)
您需要为两个图像提供相同的权重,如下所示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:src="@drawable/input_cell" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:src="@drawable/input_cell" />
</LinearLayout>
在你的情况下使用这个
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="fill_horizontal"
android:gravity="center"
android:orientation="horizontal" >
<ImageView
android:id="@+id/area"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:src="@drawable/area_selector"
android:layout_weight="1"
android:layout_gravity="left"
android:paddingTop="15dp"/>
<ImageView
android:id="@+id/volume"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:src="@drawable/volume_selector"
android:layout_gravity="left"
android:paddingTop="15dp" />
</LinearLayout>