gpt4 book ai didi

java - 将文本框宽度设置为剩余宽度

转载 作者:行者123 更新时间:2023-12-02 00:10:13 26 4
gpt4 key购买 nike

请看下面的代码

<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"
>

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

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/firstNumber"
/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>

</LinearLayout>

</LinearLayout>

这里,文本框的尺寸(宽度)非常小。我试图将其设置为适合剩余宽度,但如您所见,它失败了。我也使用过android:weight=1。请帮忙,如何将文本框的宽度设置为剩余宽度?

最佳答案

也许您需要更改水平 LinearLayout,如下所示。将宽度更改为 match_parent

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

并将 android:weight=1 添加到 TextView

关于java - 将文本框宽度设置为剩余宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12999372/

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