I want to display some text onDoubleClick event how to do so ? i have attached my sourcecode AlongHow to listen to doubletap on a view in android?Android Double TapAndroid simple login screen crashes app when logging, no errors in eclipse. Which java class activity is at fault?Android App development - WebView is not workingWebview scale is changed in androidGoogle map API v2[Android]Object cannot be cast to java.lang.String AsynctaskHow to get selected items in a custom listview to another activity in same custom listviewOSMDROID - loading .map file downloaded from mapsforgeYouTube Player crashes (java.lang.NullPointerException, null object reference)how to count number of trimester using weeksThis use Navigation Drawer, and use Tab, and use Fragment. how communication between FragmentActivity and Fragment?

What election rules and voting rights are guaranteed by the US Constitution?

Is it advisable to inform the CEO about his brother accessing his office?

Is my guitar action too high or is the bridge too high?

How can an inexperienced GM keep a game fun for experienced players?

How useful would a hydroelectric power plant be in the post-apocalypse world?

Correct use of the the idiom 'Гнать/Катить бочку'

How soon after takeoff can you recline your airplane seat?

Avoiding repetition when using the "snprintf idiom" to write text

Why is numpy sometimes slower than numpy + plain python loop?

Subset of knight's move in chess.

German idiomatic equivalents of 能骗就骗 (if you can trick, then trick)

Two palindromes are not enough

What is the meaning of 'shout over' in a sentence exactly?

Sort a list of lists by increasing order of elements

How did they film the Invisible Man being invisible in 1933?

Hard for me to understand one tip written in "The as-if rule" of cppreference

What prevents a US state from colonizing a smaller state?

Fully submerged water bath for stove top baking?

Is it theoretically possible to hack printer using scanner tray?

Does "boire un jus" tend to mean "coffee" or "juice of fruit"?

Where to connect the fuse and why?

What does 'in attendance' mean on a death certificate - England?

Active wildlife outside the window- Good or Bad for Cat psychology?

How does the 'five minute adventuring day' affect class balance?



I want to display some text onDoubleClick event how to do so ? i have attached my sourcecode Along


How to listen to doubletap on a view in android?Android Double TapAndroid simple login screen crashes app when logging, no errors in eclipse. Which java class activity is at fault?Android App development - WebView is not workingWebview scale is changed in androidGoogle map API v2[Android]Object cannot be cast to java.lang.String AsynctaskHow to get selected items in a custom listview to another activity in same custom listviewOSMDROID - loading .map file downloaded from mapsforgeYouTube Player crashes (java.lang.NullPointerException, null object reference)how to count number of trimester using weeksThis use Navigation Drawer, and use Tab, and use Fragment. how communication between FragmentActivity and Fragment?













0















I want to apply a doubleClick event on a text field which displays some text on double click event but it keeps giving me errors is there any method to just simply doing this



TextView tv;
@SuppressLint("ClickableViewAccessibility")
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.mytext);
tv.setOnTouchListener(new OnDoubleTapListener()
@Override
public boolean onSingleTapConfirmed(MotionEvent e)
return true;


@Override
public boolean onDoubleTap(MotionEvent e)
tv.setText("DoubleTouch");
return true;


@Override
public boolean onDoubleTapEvent(MotionEvent e)
tv.setText("Double Touch ");
return true;



);










share|improve this question
























  • Possible duplicate of How to listen to doubletap on a view in android?

    – ADM
    Mar 25 at 15:51






  • 1





    what is the error?

    – John Joe
    Mar 25 at 15:54












  • @JohnJoe "setOnTouchListener (android.view.View.OnTouchListener) in View cannot be applied to (anonymous android.view.GestureDetector.OnDoubleTapListener)"

    – Fahad Sheikh
    Mar 25 at 16:01











  • stackoverflow.com/a/14503679/5156075

    – John Joe
    Mar 25 at 16:14















0















I want to apply a doubleClick event on a text field which displays some text on double click event but it keeps giving me errors is there any method to just simply doing this



TextView tv;
@SuppressLint("ClickableViewAccessibility")
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.mytext);
tv.setOnTouchListener(new OnDoubleTapListener()
@Override
public boolean onSingleTapConfirmed(MotionEvent e)
return true;


@Override
public boolean onDoubleTap(MotionEvent e)
tv.setText("DoubleTouch");
return true;


@Override
public boolean onDoubleTapEvent(MotionEvent e)
tv.setText("Double Touch ");
return true;



);










share|improve this question
























  • Possible duplicate of How to listen to doubletap on a view in android?

    – ADM
    Mar 25 at 15:51






  • 1





    what is the error?

    – John Joe
    Mar 25 at 15:54












  • @JohnJoe "setOnTouchListener (android.view.View.OnTouchListener) in View cannot be applied to (anonymous android.view.GestureDetector.OnDoubleTapListener)"

    – Fahad Sheikh
    Mar 25 at 16:01











  • stackoverflow.com/a/14503679/5156075

    – John Joe
    Mar 25 at 16:14













0












0








0








I want to apply a doubleClick event on a text field which displays some text on double click event but it keeps giving me errors is there any method to just simply doing this



TextView tv;
@SuppressLint("ClickableViewAccessibility")
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.mytext);
tv.setOnTouchListener(new OnDoubleTapListener()
@Override
public boolean onSingleTapConfirmed(MotionEvent e)
return true;


@Override
public boolean onDoubleTap(MotionEvent e)
tv.setText("DoubleTouch");
return true;


@Override
public boolean onDoubleTapEvent(MotionEvent e)
tv.setText("Double Touch ");
return true;



);










share|improve this question
















I want to apply a doubleClick event on a text field which displays some text on double click event but it keeps giving me errors is there any method to just simply doing this



TextView tv;
@SuppressLint("ClickableViewAccessibility")
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.mytext);
tv.setOnTouchListener(new OnDoubleTapListener()
@Override
public boolean onSingleTapConfirmed(MotionEvent e)
return true;


@Override
public boolean onDoubleTap(MotionEvent e)
tv.setText("DoubleTouch");
return true;


@Override
public boolean onDoubleTapEvent(MotionEvent e)
tv.setText("Double Touch ");
return true;



);







java android






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 16:41









maanijou

6701 gold badge6 silver badges19 bronze badges




6701 gold badge6 silver badges19 bronze badges










asked Mar 25 at 15:49









Fahad SheikhFahad Sheikh

13 bronze badges




13 bronze badges












  • Possible duplicate of How to listen to doubletap on a view in android?

    – ADM
    Mar 25 at 15:51






  • 1





    what is the error?

    – John Joe
    Mar 25 at 15:54












  • @JohnJoe "setOnTouchListener (android.view.View.OnTouchListener) in View cannot be applied to (anonymous android.view.GestureDetector.OnDoubleTapListener)"

    – Fahad Sheikh
    Mar 25 at 16:01











  • stackoverflow.com/a/14503679/5156075

    – John Joe
    Mar 25 at 16:14

















  • Possible duplicate of How to listen to doubletap on a view in android?

    – ADM
    Mar 25 at 15:51






  • 1





    what is the error?

    – John Joe
    Mar 25 at 15:54












  • @JohnJoe "setOnTouchListener (android.view.View.OnTouchListener) in View cannot be applied to (anonymous android.view.GestureDetector.OnDoubleTapListener)"

    – Fahad Sheikh
    Mar 25 at 16:01











  • stackoverflow.com/a/14503679/5156075

    – John Joe
    Mar 25 at 16:14
















Possible duplicate of How to listen to doubletap on a view in android?

– ADM
Mar 25 at 15:51





Possible duplicate of How to listen to doubletap on a view in android?

– ADM
Mar 25 at 15:51




1




1





what is the error?

– John Joe
Mar 25 at 15:54






what is the error?

– John Joe
Mar 25 at 15:54














@JohnJoe "setOnTouchListener (android.view.View.OnTouchListener) in View cannot be applied to (anonymous android.view.GestureDetector.OnDoubleTapListener)"

– Fahad Sheikh
Mar 25 at 16:01





@JohnJoe "setOnTouchListener (android.view.View.OnTouchListener) in View cannot be applied to (anonymous android.view.GestureDetector.OnDoubleTapListener)"

– Fahad Sheikh
Mar 25 at 16:01













stackoverflow.com/a/14503679/5156075

– John Joe
Mar 25 at 16:14





stackoverflow.com/a/14503679/5156075

– John Joe
Mar 25 at 16:14










1 Answer
1






active

oldest

votes


















2














You should initialize the Gesture Detector like this



 GestureDetector gd = new GestureDetector(this, new GestureDetector.OnGestureListener() 
@Override
public boolean onDown(MotionEvent motionEvent)
return false;


@Override
public void onShowPress(MotionEvent motionEvent)



@Override
public boolean onSingleTapUp(MotionEvent motionEvent)
return false;


@Override
public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
return false;


@Override
public void onLongPress(MotionEvent motionEvent)



@Override
public boolean onFling(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
return false;

);


Then set on double click listener like this



 gd.setOnDoubleTapListener(new GestureDetector.OnDoubleTapListener() 
@Override
public boolean onSingleTapConfirmed(MotionEvent motionEvent)
return false;


@Override
public boolean onDoubleTap(MotionEvent motionEvent)
return false;


@Override
public boolean onDoubleTapEvent(MotionEvent motionEvent)
return false;

);


Finally you apply the listener to your View like this



 tv.setOnTouchListener(new View.OnTouchListener() 

@Override
public boolean onTouch(View v, MotionEvent event)
// TODO Auto-generated method stub
gd.onTouchEvent(event);
return false;

);





Refer Android docs for more info Detect Common gestures






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341632%2fi-want-to-display-some-text-ondoubleclick-event-how-to-do-so-i-have-attached-m%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    You should initialize the Gesture Detector like this



     GestureDetector gd = new GestureDetector(this, new GestureDetector.OnGestureListener() 
    @Override
    public boolean onDown(MotionEvent motionEvent)
    return false;


    @Override
    public void onShowPress(MotionEvent motionEvent)



    @Override
    public boolean onSingleTapUp(MotionEvent motionEvent)
    return false;


    @Override
    public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
    return false;


    @Override
    public void onLongPress(MotionEvent motionEvent)



    @Override
    public boolean onFling(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
    return false;

    );


    Then set on double click listener like this



     gd.setOnDoubleTapListener(new GestureDetector.OnDoubleTapListener() 
    @Override
    public boolean onSingleTapConfirmed(MotionEvent motionEvent)
    return false;


    @Override
    public boolean onDoubleTap(MotionEvent motionEvent)
    return false;


    @Override
    public boolean onDoubleTapEvent(MotionEvent motionEvent)
    return false;

    );


    Finally you apply the listener to your View like this



     tv.setOnTouchListener(new View.OnTouchListener() 

    @Override
    public boolean onTouch(View v, MotionEvent event)
    // TODO Auto-generated method stub
    gd.onTouchEvent(event);
    return false;

    );





    Refer Android docs for more info Detect Common gestures






    share|improve this answer





























      2














      You should initialize the Gesture Detector like this



       GestureDetector gd = new GestureDetector(this, new GestureDetector.OnGestureListener() 
      @Override
      public boolean onDown(MotionEvent motionEvent)
      return false;


      @Override
      public void onShowPress(MotionEvent motionEvent)



      @Override
      public boolean onSingleTapUp(MotionEvent motionEvent)
      return false;


      @Override
      public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
      return false;


      @Override
      public void onLongPress(MotionEvent motionEvent)



      @Override
      public boolean onFling(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
      return false;

      );


      Then set on double click listener like this



       gd.setOnDoubleTapListener(new GestureDetector.OnDoubleTapListener() 
      @Override
      public boolean onSingleTapConfirmed(MotionEvent motionEvent)
      return false;


      @Override
      public boolean onDoubleTap(MotionEvent motionEvent)
      return false;


      @Override
      public boolean onDoubleTapEvent(MotionEvent motionEvent)
      return false;

      );


      Finally you apply the listener to your View like this



       tv.setOnTouchListener(new View.OnTouchListener() 

      @Override
      public boolean onTouch(View v, MotionEvent event)
      // TODO Auto-generated method stub
      gd.onTouchEvent(event);
      return false;

      );





      Refer Android docs for more info Detect Common gestures






      share|improve this answer



























        2












        2








        2







        You should initialize the Gesture Detector like this



         GestureDetector gd = new GestureDetector(this, new GestureDetector.OnGestureListener() 
        @Override
        public boolean onDown(MotionEvent motionEvent)
        return false;


        @Override
        public void onShowPress(MotionEvent motionEvent)



        @Override
        public boolean onSingleTapUp(MotionEvent motionEvent)
        return false;


        @Override
        public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
        return false;


        @Override
        public void onLongPress(MotionEvent motionEvent)



        @Override
        public boolean onFling(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
        return false;

        );


        Then set on double click listener like this



         gd.setOnDoubleTapListener(new GestureDetector.OnDoubleTapListener() 
        @Override
        public boolean onSingleTapConfirmed(MotionEvent motionEvent)
        return false;


        @Override
        public boolean onDoubleTap(MotionEvent motionEvent)
        return false;


        @Override
        public boolean onDoubleTapEvent(MotionEvent motionEvent)
        return false;

        );


        Finally you apply the listener to your View like this



         tv.setOnTouchListener(new View.OnTouchListener() 

        @Override
        public boolean onTouch(View v, MotionEvent event)
        // TODO Auto-generated method stub
        gd.onTouchEvent(event);
        return false;

        );





        Refer Android docs for more info Detect Common gestures






        share|improve this answer















        You should initialize the Gesture Detector like this



         GestureDetector gd = new GestureDetector(this, new GestureDetector.OnGestureListener() 
        @Override
        public boolean onDown(MotionEvent motionEvent)
        return false;


        @Override
        public void onShowPress(MotionEvent motionEvent)



        @Override
        public boolean onSingleTapUp(MotionEvent motionEvent)
        return false;


        @Override
        public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
        return false;


        @Override
        public void onLongPress(MotionEvent motionEvent)



        @Override
        public boolean onFling(MotionEvent motionEvent, MotionEvent motionEvent1, float v, float v1)
        return false;

        );


        Then set on double click listener like this



         gd.setOnDoubleTapListener(new GestureDetector.OnDoubleTapListener() 
        @Override
        public boolean onSingleTapConfirmed(MotionEvent motionEvent)
        return false;


        @Override
        public boolean onDoubleTap(MotionEvent motionEvent)
        return false;


        @Override
        public boolean onDoubleTapEvent(MotionEvent motionEvent)
        return false;

        );


        Finally you apply the listener to your View like this



         tv.setOnTouchListener(new View.OnTouchListener() 

        @Override
        public boolean onTouch(View v, MotionEvent event)
        // TODO Auto-generated method stub
        gd.onTouchEvent(event);
        return false;

        );





        Refer Android docs for more info Detect Common gestures







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 25 at 16:16









        Mangaldeep Pannu

        8862 silver badges21 bronze badges




        8862 silver badges21 bronze badges










        answered Mar 25 at 16:08









        AmineAmine

        1,0951 gold badge4 silver badges15 bronze badges




        1,0951 gold badge4 silver badges15 bronze badges
















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341632%2fi-want-to-display-some-text-ondoubleclick-event-how-to-do-so-i-have-attached-m%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript