gpt4 book ai didi

android - FrameLayout 和 LinearLayout,在底部绘制按钮

转载 作者:行者123 更新时间:2023-11-29 18:00:59 24 4
gpt4 key购买 nike

对此有很多不同的建议,但它们似乎都不适用于 layout:gravity 等(尽管我可能做错了)

我希望在屏幕底部绘制我的按钮,而不是将它们绘制在屏幕顶部的默认位置。我相信有一种简单的方法可以做到这一点。

此刻,按钮绘制在顶部

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:game_view="http://schemas.android.com/apk/res/pap.crowslanding"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<FrameLayout
android:id="@+id/flayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/button1"
android:orientation="vertical" >

<pap.crowslanding.GameView
android:id="@+id/game_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
game_view:ballDiam="@dimen/ballDiam"
game_view:cellWidth="@dimen/cellWidth"
game_view:pixelHeight="@dimen/pixelHeight"
game_view:pixelWidth="@dimen/pixelWidth" />

<pap.crowslanding.MazeBall
android:id="@+id/mazeball"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="invisible"
game_view:ballDiam="@dimen/ballDiam"
game_view:cellWidth="@dimen/cellWidth" />
</FrameLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:orientation="horizontal" >

<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight="1"
android:text="@string/right" >
</Button>

<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/down" />
</LinearLayout>

最佳答案

父容器是一个 RelativeLayout,所以你只需要添加 android:android:layout_alignParentBottom=true 到你的 LinearLayout 并摆脱layout_gravity 属性。

关于android - FrameLayout 和 LinearLayout,在底部绘制按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16112175/

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