问题描述
- github上yalantis的sidemenu的点击事件问题
-
在用sidemenu时,参考其demo,在fragment里开分线程: @Override public void takeScreenShot() { Thread thread = new Thread() { @Override public void run() { Bitmap bitmap = Bitmap.createBitmap(containerView.getWidth(), containerView.getHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); containerView.draw(canvas); ContentFragment.this.bitmap = bitmap; } }; thread.start(); }
这样做在刚开始并没有报错,但是在其中一个fragment里添加RecyclerView后,在
sidemenu打开时报错:Only the original thread that created a view hierarchy can touch its views,求解
解决方案
只有创建这个视图的原始线程才能接触到这个视图
解决方案二:
UITapGestureRecognizer和UITableView点击事件冲突问题
关于Linearlayout点击事件无效的问题
解决方案三:
谢谢提示,我只将一个fragment重写里面的takescreenshot后问题解决
时间: 2024-10-02 05:55:54