本文转自: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. ImageView的属性android:scaleType
  3. Android布局LinearLayout子控件无法填充问题
  4. Android(安卓)安卓让LinearLayout放置于底部的方法
  5. android基础入门GridView视图(12)
  6. 环境变量ANDROID_SDK_HOME的作用
  7. Android(安卓)EditView 属性大全
  8. Android属性
  9. Android用户界面 UI组件--自动提示输入框 AutoCompleteTextView

随机推荐

  1. [Android] Android制作自己的依赖库让别
  2. Android中将应用装到/system/app中
  3. Android(安卓)ID 理解
  4. 浅析Android中MVP及Demo
  5. [置顶] 您可能还不知道的八款开源Android
  6. Android(安卓)设备管理员-android 一键锁
  7. Android利用ViewPager实现一个简单的载入
  8. mtk6589显示子系统笔记(一)
  9. 使用achartengine开发曲线图相关的Androi
  10. Android(安卓)修改init.rc