本文介绍了显示Android设备上编辑文本字段中的消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
海,
我有一个文本字段的Android程序。
我需要在加载时在模拟器上可以显示文本框里面的消息。
当用户点击该文本框里面的那个消息应该dispappear。
对于防爆:请输入名称
任何一个可以张贴一些示例code在这里...
Hai,I have an Android Program with one text field.I need to display a message inside that textfield when it loads on an emulator.When the user clicks inside that textbox that message should dispappear.For Ex: Please enter nameCan any one post some sample code over here...
推荐答案
只需使用或调用 setHint
的对象。显示提示文字文本为空。
Just use or call setHint
on the object. Hint text to display when the text is empty.
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18px"
android:gravity="left"
android:hint="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse egestas ullamcorper facilisis." />
这篇关于显示Android设备上编辑文本字段中的消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!