gpt4 book ai didi

android - 跨越 2 个 fragment 的按钮(xml 布局)

转载 作者:行者123 更新时间:2023-11-30 03:39:01 25 4
gpt4 key购买 nike

不知道如何在 XML 中设置它...

试图让一个按钮覆盖位于它后面的 2 个 fragment 。

我想要的:

enter image description here

我有什么:

enter image description here

我的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal"
tools:context=".VulgarActivity"
>
<Button
android:id="@+id/luckBtn"
android:layout_gravity="bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/feel_lucky"
android:textColor="#ffffff"
/>
<fragment
android:name="com.wizardknight.visionaryvulgarity.FirstWord"
android:id="@+id/firstWord"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
/>
<fragment
android:name="com.wizardknight.visionaryvulgarity.LastWord"
android:id="@+id/lastWord"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
/>
</LinearLayout>

最佳答案

您可以使用 RelativeLayout 来做到这一点:

<?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:orientation="horizontal" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >

<fragment
android:id="@+id/firstWord"
android:name="com.wizardknight.visionaryvulgarity.FirstWord"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />

<fragment
android:id="@+id/lastWord"
android:name="com.wizardknight.visionaryvulgarity.LastWord"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>

<Button
android:id="@+id/luckBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_gravity="bottom"
android:text="@string/feel_lucky"
android:textColor="#ffffff" />

</RelativeLayout>

enter image description here

说明:

RelativeLayoutLinearLayout 的区别很简单。 LinearLayouts 线性排列它们的 subview ,如名称所示。这意味着,子项将根据 LinearLayout 的方向,垂直或水平排列自己。另一方面,RelativeLayout 的 subview 将它们自己相对于 到父 View 或其他 View 。在此布局中,我只是将父布局更改为 RelativeLayout 并将您的 fragment 包装在 LinearLayout 中,因此它们可以使用 layout_weight 属性。然后我将其设置为按钮:

android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"

这会将按钮对齐到底部并将它们水平居中。现在,由于它相对于顶层布局执行此操作,因此它与 fragment 重叠。

关于android - 跨越 2 个 fragment 的按钮(xml 布局),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16125658/

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