我希望有一个自定义布局,其中我将在顶部设置图库,然后在其下方有一个简单的小部件,以便在从图库中选择时显示图片。我无法弄清楚如何编写main.xml来实现它,你的建议将不胜感激。
图库布局xml直接来自Google教程并且正在运行。如何修改它以实现上述目标?
机器人:layout_width = “FILL_PARENT”
机器人:layout_height = “WRAP_CONTENT” />
HT
答案 0 :(得分:0)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Gallery xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView
android:id="@+id/image1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/gallery"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dip"
/></RelativeLayout>