问题标签 [ontouch]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何检查 android 对话框上的用户交互?
Android Activity 已覆盖方法 onUserInteraction。但是如何检查对话框中的用户交互?我想基于此开发一些逻辑。请帮助此代码与 Activity 一起工作(onUserInteraction)很好 public class MyBaseActivity extends Activity {
}
但是如何在 Dialog 中使用 'onUserInteraction' 方法?
button.setOnClickListener(new OnClickListener() {
android - 使用 OnTouch 监听器的按钮效果
我想向我的按钮添加一些操作。我希望它们在您触摸它们时改变颜色,并在您向上移动手指时返回原始颜色。但是出了点问题,我不知道是什么。
问题是什么?
android - andEngine Null Exception on Touch
I am new on Android devolopment and today encouraged a problem. When i click on a button which switches the scenes, it gives me a Null Pointer Exception. Stangely, it keeps crashing even if i comment out the "setScene" line from the touch event. Here is my full code..
GameActivity.java: (The base class for game activity - not the game scene)
MenuScene.java: Where the "Play" Button located in.. The game crashes on click
SceneManager.java: (The class that handles scene events and shows a "loading" scene.. )
and finnaly the line where the game crashes:
I am really sory about that the question is too long but I think that adding the relevant codes is essential
android - Android:使用触摸框架处理回收者视图项内的图像视图点击
我正在尝试捕获ImageView
包含在RecyclerView
项目内的点击。我已经实现RecyclerView.OnItemTouchListener
并让手势检测器处理正常点击和长按RecyclerView
项目的运动事件。
由于我希望使用相同的触摸框架来处理RecylcerView
项目内子视图上的触摸事件,因此我也设置View.OnTouchListener
了图像视图,覆盖了onTouch
返回 true 的实现,希望触摸在ImageView
被点击时被消耗。
我故意onInterceptTouchEvent
总是从 中返回 false RecyclerView
,希望子视图首先处理事件,如果它们都没有消耗,那么RecyclerView
的项目视图应在处理期间处理点击的手势事件onTouchEvent
。
有了上述理解,我可以ImageView
在点击它时接收到触摸事件。
问题是,当我点击RecyclerView
外面的项目时ImageView
,RecyclerView
'sonTouchEvent
根本没有被调用。我对触摸框架的理解是,如果子视图不处理触摸事件,则应该有机会处理相同的RecyclerView
事件。onTouchEvent
然而,这不是我能够实现的。
谁能建议背后发生了什么以及处理上述点击事件的正确方法是什么?
java - 在 setOnTouchListener 中访问循环变量
我在循环中创建 OnTouchListeners:
如何访问 setOnTouchListener 函数中的变量 i 和 j。我不能将它们声明为 final,因为它们是循环变量。什么是替代方法。
android - OnClick / OnTouch 用户改变主意
我目前正在试验 onclick 监听器和 on touch 监听器。
我发现即使用户将他/她的手指从元素上拖开,使用 onclick 应用程序也将始终执行该操作。但我希望用户能够改变主意并将他/她的手指从元素上拖开,这样它就不会执行操作。我设法做到了这一点。
触摸代码:
但这真的是这样做的方法吗?没有更简单的方法来实现我想要的吗?
action_bar_group_info 是线性布局。
android - 在 imageview 范围内移动 textview
我想在 imageview 内移动一个 textview,这样它就不会超出 imageview 的范围。如果我触摸并移动 textview,它应该跟随我的手指。但是如果我把它移到图像视图之外,我的文本视图不应该移到图像视图之外。
android - 如何启动animationdrawable onTouch?
我有猫动画跳跃,它有 5 个可绘制对象,我想触摸猫并让它跳跃。
如果 android oneshot="false",则在触摸猫后它会一直跳下去。
android - 检测滑动和点击手势
如何检测滑动和点击onTouch
方法?我希望在我轻扫时执行两个操作之一,而在我点击时执行其他操作。需要知道如何区分点击和滑动之间的区别。
这是我的代码:
}
android - 在android中处理点击和触摸
我有一个线性布局,里面是另一个带有按钮网格(5 * 5)的线性布局。我想检测按钮上的点击,并在我的整个屏幕上滑动操作。如何实现?