android让⼀个控件按钮居于底部的⼏种⽅法
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
weight的几种形式
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="schemas.android/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>
==============================================

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。