本文转自: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 Studio Jni 环境搭建
  2. ecmall数据库基本操作
  3. 如何编写一个JSON解析器
  4. sql server 行转列 Pivot UnPivot
  5. JSSDK微信自定义分享
  6. JSP基本语法总结【2】九大内置对象
  7. Exp4 恶意代码分析 20154320 李超
  8. Fetch请求后台的数据
  9. 画线函数Glib_Line算法的研究
  10. VS2017+WIN10自动生成类、接口的说明(修改类模板的方法)
  11. 修改centos和ubuntu ssh远程连接端口提升系统安全性
  12. Mysql系列八:Mycat和Sharding-jdbc的区别、Mycat分片join、Mycat分页中的坑、Mycat注解、Catlet使用
  13. window系统更新导致很多服务出错
  14. uva-519-拼图
  15. elasticsearch代码片段,及工具类SearchEsUtil.java
  16. #import同@class之间的区别
  17. 你需要了解 Windows Phone 8.1 的11件事
  18. Java学习笔记之:Spring MVC 环境搭建
  19. Input设置只读属性
  20. 一个命令安装lnmp

热门文章

  1. hihocoder 1032 最长回文子串(Manacher)
  2. 【Codeforces 300C】Beautiful Numbers
  3. 模拟select控件功能
  4. Xdebug的安装、配置和使用
  5. JavaMelody开源系统性能监控
  6. Hackerrank manasa-and-combinatorics(数学推导)
  7. Java的动态代理(DynamicProxy)
  8. 28、Java并发性和多线程-剖析同步器
  9. curl -O 下载文件
  10. 【一】注入框架RoboGuice使用:(A brief example of what RoboGuice does)