博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 让一个控件按钮居于底部的几种方法
阅读量:4956 次
发布时间:2019-06-12

本文共 2610 字,大约阅读时间需要 8 分钟。

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>

==============================================

转载于:https://www.cnblogs.com/zdz8207/archive/2012/12/13/2816906.html

你可能感兴趣的文章
spring-boot2.x Application properties属性配置
查看>>
C/C++中const关键字 2014-03-20 15:30 401人阅读 评论(0) 收藏...
查看>>
grep的用法
查看>>
stm32-浅谈IIC
查看>>
程序输入幸运数
查看>>
整数展示分数和整形数的四则运算
查看>>
写入数据java将数据写入到csv文件
查看>>
CI框架源码阅读笔记1 - 环境准备、基本术语和框架流程
查看>>
JSON字符与JSON对象的相互转换
查看>>
QSlider滑块类和QSpinBox微调框类
查看>>
JavaScript学习10 JS数据类型、强制类型转换和对象属性
查看>>
家庭用电的基本知识(转载)
查看>>
Debugging a SQL Server query with WinDbg
查看>>
Percona Live Conferences (2009-2016)-mysql
查看>>
http://bbs.chinaunix.net/thread-169061-1-1.html
查看>>
CenOS搭建FTP服务器
查看>>
1. Two Sum
查看>>
Head First HTML5 Chapter 5 地理定位 Google Maps API Marker 地图上的大头针
查看>>
bootstrap学习地址2017.6.1
查看>>
项目名报错,但是项目里不显示错误的问题
查看>>