需要Android线性布局帮助(两列)

时间:2014-03-19 01:49:39

标签: android android-layout android-linearlayout

我是android的新手,需要一些帮助来创建xml代码,再现这张图片中的布局:

enter image description here

我会展示到目前为止我尝试过的内容但是我只是沮丧地删除了我的整个xml文件。

提前谢谢!

2 个答案:

答案 0 :(得分:2)

<LinearLayout
  ... width=fill_parent, height=fill_parent
  ... weightSum=5
  ... orientation=horizontal>

  <LinearLayout
     ... width=0dip, height=fill_parent
     ... weight=4/>
  <LinearLayout
     ... width=0dip, height=fill_parent
     ... weight=1/>
</LinearLayout>

答案 1 :(得分:0)

    <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:weightSum="5"
      android:orientation="horizontal">

    <ImageView
     android:layout_width="0dp"
     android:layout_height="wrap_content"
     android:weight="4"/>

    <LinearLayout
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:weight="1"
      android:orientation="vertical">

    <Button
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>

    <ImageView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>

    <ImageView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>

    </LinearLayout>
 </LinearLayout>