本文介绍了的EditText与helpper提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对iphone这个程序,我希望把它用于Android设备,在启动时编辑文本中的EditText一个消息,并提示在显示屏的顶部显示iphone,我想使之成为Android的工作太,但我没有发现任何帮助,这里是与iPhone PRINTSCREEN链接


解决方案

  @覆盖
    公共无效onTextChanged(CharSequence的CS,INT ARG1,ARG2 INT,INT ARG3){
        //你的code在这里
        // showtooltip();
    }    @覆盖
    公共无效beforeTextChanged(CharSequence的为arg0,ARG1 INT,INT ARG2,
            INT ARG3){
        // TODO自动生成方法存根    }    @覆盖
    公共无效afterTextChanged(编辑为arg0){
        // TODO自动生成方法存根
    }
});

}

I have this app on iphone and I want to make it for android,on iphone when start edit text in a EditText a tooltip with a message is showing in the top of display,i want to make it work for android too,but i didn't find anything that help,here is a link with iphone printscreen

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

解决方案
   @Override
    public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
        //your code here
        //showtooltip();
    }

    @Override
    public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
            int arg3) {
        // TODO Auto-generated method stub

    }

    @Override
    public void afterTextChanged(Editable arg0) {
        // TODO Auto-generated method stub
    }
});

}

这篇关于的EditText与helpper提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-17 23:15
查看更多