android界面设计里的一个问题,一个竖直的LinearLayout里边包含了几个水平的linearLayout
是这个效果,上边图传错了,没有按钮! 展开
<?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="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0.0dip"
android:orientation="vertical"
android:layout_weight="1.0" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dip"
android:orientation="vertical"
android:background="#00ff44"
android:layout_margin="20dip" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dip"
android:orientation="vertical"
android:background="#00ff44"
android:layout_margin="20dip"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dip"
android:orientation="vertical"
android:background="#00ff44"
android:layout_margin="20dip"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dip"
android:orientation="horizontal"
android:background="#00ff44"
android:gravity="center"
android:layout_margin="20dip">
<Button
android:layout_width="0.0dip"
android:layout_height="wrap_content"
android:layout_weight="1.0"/>
<Button
android:layout_width="0.0dip"
android:layout_height="wrap_content"
android:layout_weight="1.0"/>
</LinearLayout>
</LinearLayout>
大概就这样子吧
广告 您可能关注的内容 |