Questions tagged «long-click»

11
使用Android检测长按
我目前正在使用 onTouchEvent(MotionEvent event){ } 检测用户何时按下我的glSurfaceView,有一种方法可以检测何时长按。我猜如果我在开发文档中找不到很多东西,那将是围绕方法的某种变通。例如注册ACTION_DOWN并查看ACTION_UP之前需要多长时间。 如何使用opengl-es在android上检测长按?

7
在列表视图上长时间单击事件后创建菜单
我有一个连接到数据库的列表视图,显示所有条目。我希望用户长按列表视图(数据库条目)中的某个项目时显示一个菜单,其中显示用于编辑或删除条目的选项。我怎样才能做到这一点。 到现在为止,我尝试使用onItemLongClick侦听器并在其中进行祝酒,以显示长时间单击的视图的ID。 @Override public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) { String res = Long.toString(id); Toast toast = Toast.makeText(this, res, Toast.LENGTH_SHORT); toast.show(); return true; }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.