gpt4 book ai didi

android - 如何调整框架布局的权重?

转载 作者:行者123 更新时间:2023-11-30 05:11:06 24 4
gpt4 key购买 nike

所以我正在尝试调整框架布局的权重,以便它可以覆盖 Activity 的整个页面。 Result of what happens.

这是我当前所处 Activity 的 xml。

<?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">

<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

<TextView
android:id="@+id/textView13"
android:layout_width="226dp"
android:layout_height="48dp"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:layout_marginEnd="68dp"
android:layout_marginTop="26dp"
android:fontFamily="@font/passion_one"
android:gravity="center"
android:text="Kung Fu Tea Order"
android:textColor="#000000"
android:textSize="30sp"
/>

<ListView
android:layout_width="match_parent"
android:layout_height="393dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="90dp" />


<Button
android:id="@+id/addAnotherDrink"
android:layout_width="296dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="100dp"
android:background="@drawable/btn_shape"
android:fontFamily="@font/passion_one"
android:text="ADD ANOTHER DRINK"
android:textColor="#ffffff"
android:textSize="20sp" />

<Button
android:id="@+id/placeOrderBtn"
android:layout_width="296dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="36dp"
android:background="@drawable/btn_shape"
android:fontFamily="@font/passion_one"
android:text="PLACE ORDER"
android:textColor="#ffffff"
android:textSize="20sp" />

<ImageView
android:id="@+id/imageView8"
android:layout_width="83dp"
android:layout_height="71dp"
android:layout_above="@+id/_dynamic"
android:layout_marginBottom="-90dp"
android:layout_toStartOf="@+id/textView13"
app:srcCompat="@drawable/logo"
tools:ignore="UnknownId" />


</RelativeLayout>

在我的 java 类中,我基本上是使用一个按钮通过将框架布局用作容器来导航到 fragment 。

真的吗,有没有办法改变这个框架布局的权重,这样我以前的 Activity 就不会显示了?

最佳答案

您可以将整个 Activity 的基础设为框架布局。然后你可以将布局层叠在一起,所以 FrameLayoutBase > RelativeLayout from above > FrameLayout 你想覆盖整个屏幕。然后根据需要调整布局的可见性。注意:Relative Layout 和 Overlay FrameLayout 都是 FrameLayoutBase 的独立子项。

关于android - 如何调整框架布局的权重?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53730672/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com