gpt4 book ai didi

Android Studio 布局 : Trying to make button 50% width and 50% height,,中间有按钮

转载 作者:行者123 更新时间:2023-11-29 17:30:49 25 4
gpt4 key购买 nike

我在 Android Studio 中工作,希望我的布局是一个 2 x 2 的按钮网格,中间有一个按钮。请参阅下面的代码。

<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:id="@+id/incentivebutton">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Incentive"
android:id="@+id/incentiveButton"
android:onClick="IncentiveButton"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:nestedScrollingEnabled="true"
android:background = "@drawable/roundbutton"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:paddingTop="55dp"
android:paddingBottom="55dp"
android:layout_gravity="center_vertical" />

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="6dp"
android:weightSum="2"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button
android:id="@+id/buttonCollect"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:layout_weight="1"/>

<Button
android:id="@+id/buttonCollect1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:layout_weight="1" />
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight="1">
<Button
android:id="@+id/buttonCollect3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:layout_weight="1" />

<Button
android:id="@+id/buttonCollect2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>

这是现在的样子:

enter image description here

我喜欢这种布局,但我希望按钮的高度为 50%。有人有什么建议吗?

最佳答案

如果您正在寻找这样的设计

enter image description here

您可以使用 FrameLayout

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >

<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="1" />

<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="2" />
</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >

<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="3" />

<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="4" />
</LinearLayout>
</LinearLayout>

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/instagram"/>

</FrameLayout>

我使用了 LinearLayoutweightSum。看看有没有帮助!

关于Android Studio 布局 : Trying to make button 50% width and 50% height,,中间有按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33068569/

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