文件名称:Android 区分判断按钮长按和短按.rar
文件大小:13KB
文件格式:RAR
更新时间:2022-07-30 12:57:57
Android源码-菜单实例
这是一个长按按钮和短按按钮的例子,有时候,长按和短按分别完成不同的功能,这个功能不局限于按钮,像很多的Listview中也早已加入了长按和短按的功能,长按时候,一般是完成一些不常用的功能,比如删除之类的,下面是按钮中的长按和短按的具体实现: Button button;//声明按钮的引用 public void onCreate(Bundle savedInstanceState) {//重写的onCreate方法 super.onCreate(savedInstanceState); setContentView(R.layout.main); button = (Button) this.findViewById(R.id.button);//得到按钮的引用 button.setTextSize(20); button.setOnLongClickListener(this);//注册监听 } @Override public boolean onLongClick(View v) {//实现接口中的方法 if(v == button){//当按下的是按钮时 Toast.makeText( this, "长时间按下了按钮", Toast.LENGTH_SHORT ).show();//显示提示 } return false; }
【文件预览】:
codesc.net
----onLongClick()
--------res()
--------assets()
--------default.properties(449B)
--------gen()
--------src()
--------.project(846B)
--------.classpath(280B)
--------AndroidManifest.xml(672B)