带有帮助工具提示的EditText

E V*_*lad 1 android tooltip imageview android-edittext

我在iphone上有这个应用程序,我想用它来制作android,在iphone上开始在EditText中编辑文本时,一个消息的工具提示显示在显示的顶部,我想让它也适用于android,但我没有找不到任何有用的东西,这里有iphone printscreen的链接

http://www.codemyworld.com/edi/Android/IMG_0022.PNG

gsb*_*gsb 5

Android中没有悬停的工具提示概念.你可以做以下两件事之一:

LongClickListener对于你的EditText用户长按时会显示祝酒词.像这样的东西:

View view = (View)findViewById(R.id.your_view);
view.setOnLongClickListener(new OnLongClickListener() {
    @Override
    public void onLongClick(View v) {
      Toast toast = Toast.makeText(this, "Show hint here", Toast.LENGTH_SHORT);
    }
});
Run Code Online (Sandbox Code Playgroud)

要么

在EditText中显示提示,让用户知道他们需要输入什么.

<EditText
    android:hint="Your tip here" />
Run Code Online (Sandbox Code Playgroud)