gpt4 book ai didi

android - 如何避免编辑文本覆盖 TextView

转载 作者:行者123 更新时间:2023-11-30 01:35:43 24 4
gpt4 key购买 nike

我是 Android 的新手,我做了一个编辑文本,用户可以在其中输入他的电子邮件 ID,但是当他输入错误的电子邮件时,我通过使其可见来在右侧的“无效用户”文本框中显示消息,问题是,如果用户电子邮件很长,那么消息就会过来,我想避免它。这是 xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<EditText
android:id="@+id/emailedittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="20dp"
android:ems="10"
android:hint="To my first character"
>

<requestFocus />
</EditText>

<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/password"
android:layout_alignBottom="@+id/password"
android:layout_alignParentRight="true"
android:textColor="@color/colorAccent"
android:text="INVALID USER "
android:visibility="gone"

/>

</RelativeLayout>

最佳答案

由于您将 emailedittext 宽度作为 match_parent ,它将适合其父级。

对于要用于显示消息的 TextView ,应该有适当的布局参数,如对齐 toRightOf(如果你想在旁边编辑文本)等,这是错过的。

因此,如果你想在 emailedittext 之外显示,请使用 toRightOf 给 TextView 并固定宽度给 edittext。要在下方显示,请提供 layout_below

这里我尝试用代码给出答案

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<EditText
android:id="@+id/emailedittext"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:ems="10"
android:hint="To my first character"
android:lines="2"
android:text="helloworld_android@androiduser.com">

<requestFocus />
</EditText>

<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_toRightOf="@+id/emailedittext"
android:text="INVALID USER "

/>

</RelativeLayout>

线性使用权重

<EditText
android:id="@+id/emailedittext"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="20dp" android:layout_weight="7"
android:ems="10"
android:hint="To my first character"
android:lines="2"
android:text="helloworld_android@androiduser.com">

<requestFocus />
</EditText>

<TextView
android:id="@+id/text_view"
android:layout_width="0dp" android:layout_weight="3"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="INVALID USER "

/>

建议

对于移动应用程序,请尝试将消息作为警报或 Toast 发送。避免在 textview 中显示这样的消息。

编辑文本使用setError显示警报或引起用户注意。下面是我用 setError 给出的一个样本用于编辑文本

     final EditText emailedittext = (EditText)  findViewById(R.id.emailedittext);

findViewById(R.id.btnSelect).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (TextUtils.isEmpty(emailedittext.getText().toString())) {
emailedittext.setError("Please enter email id");
} else {
// if (emailid is not proper/valid) {
// emailedittext.setError("Please enter valid Email id");
// } else {
// // Correct email
// }
}
}
});

关于android - 如何避免编辑文本覆盖 TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35133141/

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