您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在 Android 中,要实现对按钮(Button)触摸事件的拦截,可以通过重写 ViewGroup 的 onInterceptTouchEvent()
方法来实现。以下是一个简单的示例:
onInterceptTouchEvent()
方法:public class CustomLinearLayout extends LinearLayout {
public CustomLinearLayout(Context context) {
super(context);
}
public CustomLinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomLinearLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
// 在这里处理触摸事件拦截逻辑
// 返回 true 表示拦截事件,不再向子视图传递;返回 false 则不拦截,继续向子视图传递
return super.onInterceptTouchEvent(ev);
}
}
<com.example.myapplication.CustomLinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!" />
</com.example.myapplication.CustomLinearLayout>
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
CustomLinearLayout customLinearLayout = findViewById(R.id.custom_linear_layout);
customLinearLayout.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// 在这里处理触摸事件
return false;
}
});
}
}
通过这种方式,你可以在自定义的 ViewGroup 中拦截按钮的触摸事件,并根据需要进行处理。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。