本文转自:http://www.cnblogs.com/zdz8207/archive/2012/12/13/2816906.html

android 让一个控件按钮居于底部的几种方法1.采用linearlayout布局:android:layout_height="0dp" <!-- 这里不能设置fill_parent -->android:layout_weight="1" <!-- 这里设置layout_weight=1是最关键的,否则底部的LinearLayout无法到底部 -->2. 采用relativelayout布局:android:layout_alignParentBottom="true" <!-- 这里设置layout_alignParentBottom=true是最关键的,这个属性上级必须是RelativeLayout --> 3. 采用 fragment 布局(activitygroup 已经被弃用不建议使用) =====================================1.采用linearlayout布局:<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <LinearLayout android:id="@+id/content" android:layout_width="fill_parent" android:layout_height="0dp" <!-- 这里不能设置fill_parent -->android:layout_weight="1" <!-- 这里设置layout_weight=1是最关键的,否则底部的LinearLayout无法到底部 -->android:orientation="vertical"> </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="bottom" android:orientation="vertical"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/runbackground" android:focusable="false" /> </LinearLayout> </LinearLayout> 2. 采用relativelayout布局:<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" <!-- 这里设置layout_alignParentBottom=true是最关键的,这个属性上级必须是RelativeLayout -->android:orientation="vertical"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/runbackground" android:focusable="false" /> </LinearLayout> </RelativeLayout> 3. 采用 fragment 布局(activitygroup 已经被弃用不建议使用)<?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="wrap_content" android:orientation="vertical" > <fragment class="com.xuzhi.fragment.FragmentDemoActivity$TitlesFragment" android:id="@+id/titles" android:layout_weight="1" android:layout_width="0px" android:layout_height="match_parent" /> <FrameLayout android:id="@+id/details" android:layout_weight="1" android:layout_width="0px" android:layout_height="match_parent" android:background="?android:attr/detailsElementBackground" ></FrameLayout> </LinearLayout>

更多相关文章

  1. android布局居中
  2. Android布局LinearLayout子控件无法填充问题
  3. 如果Imageview与Linearlayout有叠加且可选资源长度不同,如何布局?
  4. 2013.11.29 ——— android layout不显示布局绘图 显示空白
  5. Android EditView 属性大全
  6. Android用户界面与布局
  7. 安卓XML布局,相对布局的常用属性~

随机推荐

  1. Android获取相册中图片的路径 4.4版本前
  2. Android搜索TextView显示关键字标红(忽略
  3. H5页面调用android方法传json格式
  4. 【android】7、五大存储
  5. android 修改标题栏文字居中
  6. Android(安卓)adb shell 命令大全
  7. android textview 显示表情和文字 表情带
  8. Android IPC进程通信——Messager方式
  9. Android 学习笔记7---数据存储与访问
  10. Android入门:单元测试