Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7553347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:01:30+00:00 2026-05-30T11:01:30+00:00

I writed a activity just with a WebView that runs on an Android. The

  • 0

I writed a activity just with a WebView that runs on an Android.

The problem is

I want to close the activity through double-click.

I use “GestureDetector.SimpleOnGestureListener” faction “onDoubleTap(android.view.MotionEvent e)”

but it donnot work .

How I can do it??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T11:01:32+00:00Added an answer on May 30, 2026 at 11:01 am

    Here’s a little stuff I did for you (in order to improve myself and help you btw 🙂 )
    Tried it and it worked pretty well 😉
    :

    package com.spinner.test;
    
    import android.app.Activity;
    import android.os.Bundle;
    import android.view.GestureDetector;
    import android.view.MotionEvent;
    import android.view.View;
    import android.view.View.OnTouchListener;
    import android.webkit.WebView;
    
    public class MyActivity extends Activity {
        /** Called when the activity is first created. */
        GestureDetector gs = null;
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
    
            WebView wvView = (WebView) findViewById(R.id.webviewid);
    
            wvView.setOnTouchListener(new OnTouchListener() {
                @Override
                public boolean onTouch(View v, MotionEvent event) {
                    if (gs == null) {
                        gs = new GestureDetector(
                                new GestureDetector.SimpleOnGestureListener() {
                                    @Override
                                    public boolean onDoubleTapEvent(MotionEvent e) {
                                        MyActivity.this.finish();
                                        return true;
                                    }
                                });
                    }
                    gs.onTouchEvent(event);
    
                    return false;
                }
            });
            wvView.loadUrl("http://www.google.fr");
    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example, I want to write an activity that launches when you return from
I have tried to write an Android application with an activity that should be
I have a ListActivity in Android. Each row is just an item that starts
What does the dot mean? most of the time I just write that: <activity
I have seen a convention in android programming, that when forexample calling another activity
I am trying to write a simple activity that received from the user its
I want to write a program from scratch to see the sockets activity, what
I want to write a simple program which shows my internet activity over a
I'm trying to write an app that consists of an activity that manages a
I am starting with an Activity based off of this ShakeActivity and I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.