gpt4 book ai didi

java - 如何实现均匀分布的布局

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

我当前的布局如下:

enter image description here

我的 XML 布局如下所示:

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

<TextView
android:id="@+id/tvLetter"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="3"
android:text=""
android:gravity="center"
android:textSize="@dimen/letter_size"
android:textColor="#FFFFFF"
android:background="@drawable/bd" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="1" >

<Button
android:id="@+id/colorButton"
android:layout_width="@dimen/btn_action"
android:layout_height="@dimen/btn_action"
android:layout_centerInParent="true"
android:background ="@drawable/colors"
android:layout_alignParentLeft="true" />

<Button
android:id="@+id/soundButton"
android:layout_width="@dimen/btn_action"
android:layout_height="@dimen/btn_action"

android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:background="@drawable/sound" />

<Button
android:id="@+id/eraserButton"
android:layout_width="@dimen/btn_action"
android:layout_height="@dimen/btn_action"
android:layout_alignParentRight="true"
android:layout_centerInParent="true"
android:background="@drawable/eraser" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="2" >

<ImageView
android:id="@+id/ivIcon"
android:layout_width="@dimen/letter_icon"
android:layout_height="@dimen/letter_icon"
android:scaleType="fitXY"
android:layout_alignParentLeft="true"
android:background="@drawable/zebra" />
<LinearLayout
android:id="@+id/actionHolder"
android:layout_toRightOf="@+id/ivIcon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/wordSound"
android:layout_width="@dimen/btn_action"
android:layout_height="@dimen/btn_action"
android:background="@drawable/sound" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>

我的@dimen/letter_icon根据屏幕尺寸用于不同的尺寸。我正在尝试使其与手机和平板电脑(不同尺寸的屏幕)兼容。如何在布局中实现以下目标:

enter image description here

假设 ZEBRA 文本位于 TextView 内,声音位于按钮中。

我认为底部 ImageView 必须位于另一个布局内,也许是 Linearleatout ?并占据屏幕宽度的3/4空间。

最佳答案

ZEBRASPEAKER 按钮放在垂直 LinearLayout 中。将按钮的 height 设置为 match_parent 并将 layout_weight 设置为 1,你应该得到你想要的

如果您想在按钮的容器和 ImageView 之间分配宽度,请将它们的 width 设置为 match_parent 并在那里使用 layout_weight

关于java - 如何实现均匀分布的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18320119/

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