[Android] Android 让UI控件固定于底部的几种方法

Posted wukong1688

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Android] Android 让UI控件固定于底部的几种方法相关的知识,希望对你有一定的参考价值。

Android 让UI控件固定于底部的几种方法
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 -->

 

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

布局xml代码如下:

1)采用linearlayout布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="0dp"  <!-- 这里不能设置fill_parent -->
        android:layout_weight="1"    <!-- 这里设置layout_weight=1是最关键的,否则底部的LinearLayout无法到底部 -->
        android:orientation="vertical">

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_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="#ff0000"
            android:focusable="false" />
    </LinearLayout>
</LinearLayout>

 

2)采用relativelayout布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"      <!--上级必须是RelativeLayout-->
        android:orientation="vertical">

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#ff0000"
            android:focusable="false"
            android:text="button"/>
    </LinearLayout>
</RelativeLayout>

本博客地址: wukong1688

本文原文地址:https://www.cnblogs.com/wukong1688/p/10660549.html

转载请著名出处!谢谢~~

 

以上是关于[Android] Android 让UI控件固定于底部的几种方法的主要内容,如果未能解决你的问题,请参考以下文章

android 如何让UI顶部和底部固定

Android Material Design新UI控件使用大全 二

Android Material Design新UI控件使用大全 二

Android技术分享| Bugly 应用升级自定义UI

一起Talk Android吧(第四百四十七回:UI控件之TimerPickerDialog)

一起Talk Android吧(第四百四十六回:UI控件之DatePickerDialog)