如何绘制视图组合

时间:2010-10-22 17:57:54

标签: views android-widget

我希望有一个自定义布局,其中我将在顶部设置图库,然后在其下方有一个简单的小部件,以便在从图库中选择时显示图片。我无法弄清楚如何编写main.xml来实现它,你的建议将不胜感激。

图库布局xml直接来自Google教程并且正在运行。如何修改它以实现上述目标?

  

  机器人:layout_width = “FILL_PARENT”
  机器人:layout_height = “WRAP_CONTENT”   />

HT

1 个答案:

答案 0 :(得分:0)

好吧,我已经为自己找到了,对于将来可能需要这个的人,main.xml如下所示:

  <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>