gpt4 book ai didi

android - tableRow 中的 EditText 如何修复 100%

转载 作者:太空宇宙 更新时间:2023-11-03 12:39:47 25 4
gpt4 key购买 nike

我有一个带有表格和按钮的线性布局,表格有 EditText 和 TextView,我的问题是 EditText,它太小了

  <LinearLayout
android:orientation="vertical"
android:layout_width="300dip"
android:layout_height="350dip"
android:background="@drawable/background_resto"
>

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
>

<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
>
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity ="center"
>
<TextView
android:id="@+id/nameRegister"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="Nombre"
android:layout_marginLeft="10dip"
/>
</TableRow>

<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity ="center"
>

<EditText
android:id="@+id/registerName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
/>
</TableRow>


</TableLayout>
<Button
android:id="@+id/butRegister"
android:layout_height="35dip"
android:layout_width="wrap_content"
android:text="Enviar"
/>
</LinearLayout>
</LinearLayout>

我希望 EditText 修复第一个 linearLayout 的 300dip,但我不明白,我该怎么办?

最佳答案

试试这个,添加到 TableLayout stretchColumns 参数

<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:stretchColumns="1"
>

关于android - tableRow 中的 EditText 如何修复 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10758843/

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