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 6102317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:36:01+00:00 2026-05-23T13:36:01+00:00

I want to know that if I have two activities in a program then

  • 0

I want to know that if I have two activities in a program then how can I switch between two activities using ontouchlistener, just only touching anywhere on the screen?

public class V19 extends Activity implements OnTouchListener{

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.lay19);
    }

    @Override
    public boolean onTouch(View to_main, MotionEvent event) {
        return false;
    }
}
  • 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-23T13:36:02+00:00Added an answer on May 23, 2026 at 1:36 pm

    You can use layout inflater and method setContentView(View v)

    public class V19 extends Activity implements OnTouchListener{
    
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        View view = getLayoutInflater().inflate(R.layout.lay19, null);
        setContentView(view);
        view.setOnTouchListener(this);
    }
    
    @Override
    public boolean onTouch(View to_main, MotionEvent event) {
        Intent i = new Intent(this, Activity2.class);
        startActivity(i);
        return false;
    }
    }    
    

    And than you can catch all touch events.

    Other way is to override public boolean dispatchTouchEvent (MotionEvent ev) method. Reference says:

    public boolean dispatchTouchEvent (MotionEvent ev)

    Since: API Level 1
    Called to process touch screen events. You can override this to intercept all touch screen events before they are dispatched to the window. Be sure to call this implementation for touch screen events that should be handled normally.
    Parameters

    ev The touch screen event.

    Return true if this event was consumed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just want to know that can i make an application which have some
I just want to know how to access an array in SMARTY that have
I know that __stdcall functions can't have ellipses, but I want to be sure
I know that Java have its own garbage collection, but sometimes I want to
i have one domain link text i want to know that does google crawl
I know that when you want to have a value in the form like
I know that if I want to have requests for MyPage.aspx go to the
I have NSArray and I want to remove duplicates from it. I know that
I have a fortran dll, and I want to know the assemblies that it
I have a postgres database that I want to know some quick stats. For

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.