gpt4 book ai didi

android - 为什么当我更改 Button 中的文本大小时,相邻的 Button 会移动

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:59:08 26 4
gpt4 key购买 nike

这是每个 Button 时的布局具有相同大小的文本:

enter image description here

这是我增加右下角尺寸时的布局 Button正文:

enter image description here

这是怎么回事?为什么是“0” Button低于两个Buttons旁边呢?

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@android:color/white"
android:orientation="vertical"
android:padding="6dp">

<TextView
android:id="@+id/input_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColorHint="@color/hint_color"
android:singleLine="true"
android:textSize="40sp"/>

<GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:columnCount="3">

<Button
android:id="@+id/the_1_button"
android:background="@android:color/white"
android:text="1"/>

<Button
android:id="@+id/the_2_button"
android:background="@android:color/white"
android:text="2"/>

<Button
android:id="@+id/the_3_button"
android:background="@android:color/white"
android:text="3"/>

<Button
android:id="@+id/the_4_button"
android:background="@android:color/white"
android:text="4"/>

<Button
android:id="@+id/the_5_button"
android:background="@android:color/white"
android:text="5"/>

<Button
android:id="@+id/the_6_button"
android:background="@android:color/white"
android:text="6"/>

<Button
android:id="@+id/the_7_button"
android:background="@android:color/white"
android:text="7"/>

<Button
android:id="@+id/the_8_button"
android:background="@android:color/white"
android:text="8"/>

<Button
android:id="@+id/the_9_button"
android:background="@android:color/white"
android:text="9"/>

<ImageButton
android:id="@+id/the_backspace_button"
style="@style/Widget.AppCompat.Button"
android:background="@android:color/white"
android:src="@drawable/ic_backspace"/>

<Button
android:id="@+id/the_0_button"
android:background="@android:color/white"
android:text="0"/>

<Button
android:id="@+id/the_done_button"
android:layout_width="88dp"
android:layout_height="48dp"
android:minWidth="0dp"
android:minHeight="0dp"
android:background="@android:color/white"
android:text="done"/>
</GridLayout>

</LinearLayout>

更新:

我制作了“DONE”的文字Button超大——100sp——并设置maxWidthmaxHeight因为它等于另一个的高度和宽度 Buttons .这是结果:

enter image description here
*蓝色是GridLayout的背景,红色的“0”Button's和黄色的“完成”Button's

为什么更改“完成”按钮的文本大小会影响除特定 Button 之外的任何其他内容?如果 Button 的大小永远不会改变?

最佳答案

我认为完成按钮有问题。你设置它的背景。然后您还将其文本设置为“完成”。

只需将它的文本设置为空,问题就可以解决;)

关于android - 为什么当我更改 Button 中的文本大小时,相邻的 Button 会移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39985725/

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