gpt4 book ai didi

java - Android EditText 中的对齐问题

转载 作者:行者123 更新时间:2023-11-30 03:49:10 25 4
gpt4 key购买 nike

请看下面的代码

<ScrollView 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"
tools:context=".Form" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<TextView
android:id="@+id/heightLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/height"
/>

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/heightLabel"
android:layout_marginLeft="5dp"
android:hint=""
/>

</RelativeLayout>


</ScrollView>

我需要这个 EditText 显示在 TextView 旁边,并且大小合适。但相反,它没有显示在任何地方。我什至没有看到它!请帮忙!

最佳答案

您正在使用 wrap_content 但没有默认文本。因此,如果 EditText 可见,它将非常小。您需要自己定义一个合适的尺寸。尝试使用 match_parent 作为宽度或添加 minWidthems 等属性。

关于java - Android EditText 中的对齐问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14427501/

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