记得刚学习android UI的时候,让控件置底只会使用Relativelayout,有时候会让整体布局很不方便,LinearLayout布局置底的方法很简单,在此只是望和我一样的一些新手,少走些弯路了。
效果:
![](https://box.kancloud.cn/2016-03-01_56d5568d5bc8f.jpg)
代码:
~~~
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#d8e0e8"
android:orientation="vertical" >
<ListView
android:id="@+id/msg_list_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="#0000" >
</ListView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/input_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Type somthing here"
android:maxLines="2" />
<Button
android:id="@+id/send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send" />
</LinearLayout>
</LinearLayout>
~~~
- 前言
- android Nine-Patch的使用(制作聊天界面必学)
- android 图片文字轮播效果(图片和文字自动滚动)
- LinearLayout布局中如何让控件置底
- viewpager+将activity转化成view 做主界面(可点击可滑动,超容易理解的demo)
- android swipeRefreshLayout 下拉刷新 google官方组件
- android 自定义AlertDialog 与Activity相互传递数据
- android 简单地设置Activity界面的跳转动画
- android XML动画初步解析(activity界面之间跳转demo)
- android selector设置button点击效果(详细)以及常见问题
- android 用java动态设置布局(增添删除修改布局)