关于Android布局问题 我想实现的布局如下: 顶部有一行水平linearlayout里面放置编
我想实现的布局如下:
顶部有一行水平linearlayout里面放置编辑框和按钮
中间用listview填充
底部又是一行水平linearlayout放一些按钮
请问有什么实现方案
图中et为编辑框,btn为按钮 展开
2014-08-26 · 知道合伙人软件行家
是要这样吗,简单,给你上代码
<?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="wrap_content"
android:orientation="horizontal" >
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="input"
android:layout_weight="1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFF00"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button4" />
</LinearLayout>
</LinearLayout>
请采纳哈
原来就是一个权重的运用呵呵
嗯嗯
linearlayout 全屏,竖排
linearlayout 横排
editText weight=1
button
listview weight = 1
linearlayout
button weight=1
button weight=1
就是想做一个界面,上下都有一行linearlayout紧贴屏幕。中间是listview。