ANDROID EditText onclicklistener?

发布于 2024-11-07 03:21:55 字数 282 浏览 2 评论 0原文

我这里有两个 EditTexts'(用户名和密码),我希望它在应用程序启动时看起来像这样:

enter image此处的描述

但在用户单击 EditTexts 后,我希望它自动删除“用户名”(和“密码”),如下所示:

在此处输入图像描述

我该怎么做这个技巧?有人可以帮我吗? :)

I have here two EditTexts' (username and password) and I want it to look like this on the start of the application:

enter image description here

But after the user should click the EditTexts' i want it to automatically delete the "username"(and "password"), like this:

enter image description here

how should i do that trick? can anyone help me, please? :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦醒灬来后我 2024-11-14 03:21:55

使用属性android:hint

<EditText
    android:hint="Username">
</EditText>

Use the property android:hint

<EditText
    android:hint="Username">
</EditText>
千笙结 2024-11-14 03:21:55

有更简单的方法:使用 hint-property,它完全符合您的要求。
仅当 EditText 为空时才会显示。

There is something easier: use the hint-property, it does exactly what you want.
It's only shown when the EditText ist empty.

痴者 2024-11-14 03:21:55

在 xml 中使用 android:hint 标签,

例如,

        <EditText  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:hint="username"
        />

Use the android:hint tag in the xml

E.g.,

        <EditText  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:hint="username"
        />
霊感 2024-11-14 03:21:55

使用 xml 文件中的 android:hint="UserName"

<EditText android:id="@+id/username"
android:layout_height="wrap_content" android:hint="Enter Text to Send"
android:inputType="text" 
android:text="" />

并在密码中使用 android:password="true" EditText

Use the android:hint="UserName" in the xml file.

<EditText android:id="@+id/username"
android:layout_height="wrap_content" android:hint="Enter Text to Send"
android:inputType="text" 
android:text="" />

and also use android:password="true" in the password EditText

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文