Commit c0639c0a by Lee Jaebin

#33088 3Dアクションを実行したが、メモのポップアップが表示される問題対応

parent 032eb0d4
......@@ -92,10 +92,8 @@ public class Action3DImageView extends ImageView implements OnTouchListener {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (mEventFlg == false) {
((ZoomRelativeLayout)v.getParent()).onTouchEvent(event);
} else {
if (((ZoomRelativeLayout)v.getParent()).isZooming() == false) {
if (mEventFlg) {
if (((ZoomRelativeLayout) v.getParent()).isZooming() == false) {
v.getParent().requestDisallowInterceptTouchEvent(true);
int x = (int) event.getRawX();
int y = (int) event.getRawY();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment