我是android的新手,需要一些帮助来创建xml代码,再现这张图片中的布局:
我会展示到目前为止我尝试过的内容但是我只是沮丧地删除了我的整个xml文件。
提前谢谢!
答案 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>