同时在editText中提示和文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了同时在editText中提示和文本相关的知识,希望对你有一定的参考价值。
我只需要一个editText,我可以在其中同时设置Text和提示。例如,我希望用户在此字符串中输入editText字符串,例如用户#1234用户#应该是文本后,数字将变化,以便当用户尝试输入光标时,1234应显示为提示,#1234提示将消失用户键入一个字符。
请指导我如何做到这一点。
谢谢
答案
我设法通过一些技巧和margin
和padding
来实现这一目标
这就是我做的
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp" >
<TextView
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="right"
android:text="user#" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="1234"
android:paddingLeft="40dp"
android:textSize="14sp" />
</RelativeLayout>
希望这会帮助你
另一答案
这在Android的默认EditText
中是不可能的,但如果想要实现这一点,你将不得不工作一点。
您可以使用名为Masked-EditText的库。阅读文档并了解如何使用它来解决您的目的。希望有所帮助。
[编辑]
我还有一个你绝对可以使用的技巧。在编辑文本上实现onChangeListener
。每次调用它时,都要运行一个函数。该函数应该获取editText
中的文本并获取子字符串(前5个字符)。如果子字符串匹配“user#”,则不执行任何操作。否则将editText中的文本替换为“user#”。好吧哈!
另一答案
您可以通过两种方式完成此操作
#1
将用户#的图像作为drawableLeft
放置到EditText
#2
使用RelativeLayout
将TextView
和EditText
放在另一个之上,这样它就会在TextView
中显示EditText
中的文字,如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll_parent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="user#"
android:textColor="#aaaaaaaa"
android:textSize="30dip" />
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/textView1"
android:layout_alignBottom="@+id/textView1"
android:layout_toRightOf="@+id/textView1"
android:background="#00000000"
android:textSize="30dip">
</EditText>
以上是关于同时在editText中提示和文本的主要内容,如果未能解决你的问题,请参考以下文章