如何在Android Studio中制作Android xml Linerlayout的底部活动?

问题描述 投票:1回答:1

如何在Android Studio中制作页面底部的LinearLayout。从下面的代码中可以看到这样的结果

我希望高亮的暗部布局在页面底部。I want the highlighted darken layout to be at the bottom of the page.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainPage"
    android:orientation="vertical"
    android:background="#ffffff">

<Button
        android:id="@+id/taptoscan"
        android:layout_marginTop="40dp"
        android:layout_marginBottom="10dp"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:background="@drawable/barcode"
        android:layout_gravity="center"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Tap to Scan"
        android:fontFamily="@font/antic"
        android:layout_gravity="center"
        android:textSize="18sp"/>

    <!--here is the layout i want to put at the bottom of the page-->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="@color/colorPrimaryDark"
        android:orientation="horizontal"
        android:layout_alignParentBottom="true"
        android:layout_gravity="bottom"
        android:gravity="bottom">

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
    </RelativeLayout>
</LinearLayout>

在上面的代码中,我尝试了下面的方法,但没有成功。

android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:gravity="bottom"
android xml android-studio android-linearlayout
1个回答
1
投票

你可以在外面使用RelativeLayout。类似这样,之后再add新的一个LinearLayout。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical"
    tools:context=".MainPage">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <Button
            android:id="@+id/taptoscan"
            android:layout_width="120dp"
            android:layout_height="120dp"
            android:layout_gravity="center"
            android:layout_marginTop="40dp"
            android:layout_marginBottom="10dp"
            android:background="@drawable/barcode" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:fontFamily="@font/antic"
            android:text="Tap to Scan"
            android:textSize="18sp" />
    </LinearLayout>

    <!--here is the layout i want to put at the bottom of the page-->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:layout_gravity="bottom"
        android:background="@color/colorPrimaryDark"
        android:gravity="bottom"
        android:orientation="horizontal">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    </LinearLayout>
</RelativeLayout>

0
投票

使用Frame Layout作为基础布局,以最好的方式来做,它的工作肯定是只要使用layout_gravity="bottom "在LinearLayout,你想在底部,就像这样。

  <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:orientation="vertical"
    tools:context=".MainPage">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <Button
            android:id="@+id/taptoscan"
            android:layout_width="120dp"
            android:layout_height="120dp"
            android:layout_gravity="center"
            android:layout_marginTop="40dp"
            android:layout_marginBottom="10dp"
            android:background="@drawable/barcode" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:fontFamily="@font/antic"
            android:text="Tap to Scan"
            android:textSize="18sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_gravity="bottom"
        android:background="@color/colorPrimaryDark"
        android:orientation="horizontal">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    </LinearLayout>

</FrameLayout>

0
投票

下面的方法将帮助你实现零重叠的设计规范。基本上,有四个关键步骤。

  1. 将你的根布局改为 相对布局.

  2. 内部 相对布局,增加一个 LinearLayout 将包含你的 按钮 和你 TextView.

  3. 在同一个地方 相对布局,添加 LinearLayout 您打算将其钉在屏幕底部。

  4. 确保你将第一个LinearLayout设置在第二个LinearLayout的顶部,通过使用下面的命令来实现。android:layout_above="" 属性。

现在,这里是代码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout    xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainPage">


  <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical"
      android:background="#ffffff"
      android:layout_above="@+id/bottomView">


      <Button
          android:id="@+id/taptoscan"
          android:layout_marginTop="40dp"
          android:layout_marginBottom="10dp"
          android:layout_width="120dp"
          android:layout_height="120dp"
          android:background="@drawable/barcode"
          android:layout_gravity="center"/>

      <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Tap to Scan"
          android:fontFamily="@font/antic"
          android:layout_gravity="center"
          android:textSize="18sp"/>

  </LinearLayout>

  <!--here is the layout i want to put at the bottom of the page-->
  <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="40dp"
      android:id="@+id/bottomView"
      android:background="@color/colorPrimaryDark"
      android:orientation="horizontal"
      android:layout_alignParentBottom="true"
      android:layout_gravity="bottom"
      android:gravity="bottom">

      <RelativeLayout
          android:layout_width="wrap_content"
          android:layout_height="wrap_content">
      </RelativeLayout>

  </LinearLayout>

</RelativeLayout>

希望能帮到你

© www.soinside.com 2019 - 2024. All rights reserved.