gpt4 book ai didi

android - 等于宽度 EditText?

转载 作者:行者123 更新时间:2023-11-29 15:31:06 25 4
gpt4 key购买 nike

我有一个包含 TextView 和编辑文本的屏幕。我正在尝试编辑等宽的文本。但是它们看起来宽度很小。我不想给出下降值。我能怎么做?非常感谢。

 <TableLayout
android:id="@+id/TableLayout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_centerHorizontal="true"
>


<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Name"
>
</TextView>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/name">
</EditText>
</TableRow>


<TableRow>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Last Name"
>
</TextView>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lastname">
</EditText>
</TableRow>
</TableLayout>

最佳答案

为什么不将以下代码包装在一个Linearlayout 中,并为TextView 和EditText 添加一个属性android:layout_weight=1。这将帮助您提供相同宽度的两个!

 <TextView 
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Name"
>
</TextView>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/name">
</EditText>

如果有任何疑问,请告诉我

关于android - 等于宽度 EditText?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6662975/

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