gpt4 book ai didi

java - 如何在 xml 中水平并排创建 3 个具有相同空间的按钮(Android)

转载 作者:行者123 更新时间:2023-12-01 11:15:45 25 4
gpt4 key购买 nike

我正在尝试在 android 中使用 xml 创建下面的 View 。我尝试在各处使用 Padding(使用 dp)创建它,但它并不适合所有屏幕分辨率。我该怎么做?

我的 xml 代码:(更新)

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res /android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/eee"
tools:context=".MainActivity"
android:id="@+id/eee">

<include layout="@layout/buttons" />

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_marginBottom="0dp"
android:layout_weight="8"
android:gravity="center_vertical"

>

<View
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="15" />

<Button
android:id="@+id/eee"
android:layout_weight="2"
android:layout_width="90dp"
android:layout_height="90dp"
android:background="@drawable/eeee"
android:paddingLeft="10dp"
android:paddingRight="10dp"
/>

<View
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="15" />

<Button
android:id="@+id/eee"
android:layout_weight="2"
android:layout_width="90dp"
android:layout_height="90dp"
android:background="@drawable/eee"
android:paddingLeft="10dp"
android:paddingRight="10dp"
/>

<View
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="15" />

<Button
android:id="@+id/eeee"
android:layout_weight="2"
android:layout_width="90dp"
android:layout_height="90dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:background="@drawable/drawabke"

/>

<View
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="15" />

</LinearLayout>

<View
android:id="@+id/idd"
android:layout_width="match_parent"
android:layout_height="410dp"
android:layout_alignParentBottom="true"

android:layout_weight="2"/>


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_centerHorizontal="true"
android:text="TextHere"
android:layout_alignParentBottom="true"
/>

</LinearLayout>


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_centerHorizontal="true"
android:text="TxetHere"
android:layout_alignParentBottom="true"
android:textColor="#f7f7f7"
/>

<com.lorentzos.flingswipe.SwipeFlingAdapterView
android:id="@+id/frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:rotation_degrees="15.5"
android:paddingTop ="100dp"
tools:context=".MyActivity" />


</RelativeLayout>

This is what I want

最佳答案

尝试这样的事情:

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

<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />

<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />

<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />

</Linear>

这里的情况是,LinearLayout 中有三个具有相同布局权重的 View 。

编辑:为了不让按钮拉伸(stretch),您可以使用 LinearLayout 包裹每个按钮,如下所示:

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

<LinearLayout
android:layout_width="0dp"
android:layout_weight="1"
android:gravity="center"
android:layout_height="wrap_content">

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

</LinearLayout>

[...]

</Linear>

关于java - 如何在 xml 中水平并排创建 3 个具有相同空间的按钮(Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31836236/

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