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

  • Home
  • SEARCH
  • 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 7529815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:44:55+00:00 2026-05-30T04:44:55+00:00

I want my button to start up a new thread and destroy the one

  • 0

I want my button to start up a new thread and destroy the one on which the button is located, upon clicking it, how do i do this?

package inno.games;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.EditText;

public class Introscreen extends Activity {


Button proceed;

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.intro);


proceed = (Button) findViewById(R.id.bProceed);



}
  • 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-30T04:44:55+00:00Added an answer on May 30, 2026 at 4:44 am

    destroy the [thread] on which the button is located

    Although your wording is not exactly clear, there is only one UI thread which is the main thread. The button being part of the UI “is located” (more or less) on the UI thread. You can’t destroy that thread and replace it.

    If there’s something specific that you’re looking to achieve by this, you should post that along with specific requirements.

    Update:

    If you just want to create a new thread on click then technically this does it:

    proceed.setOnClickListener(new OnClickListener() {
        @Override
        public void OnClick(View v) {
            new Thread();
        }
    });
    

    but that doesn’t exactly do anything useful. Also note that creating a new thread does not “get the CPU usage to a minimum”. Creating a new thread creates more work for the CPU to do. However, you might be able to move some work from the UI thread to a background thread which will make the user experience smoother. If that’s your goal, you should probably read this document entitled Painless Threading.

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

Sidebar

Related Questions

I want to kill/destroy the thread in my application on Button Click event. private
i have a button.when i click this button i make a new thread then
I work on Asp.Net VS08 C#. Clicking on Button want to show popup. popup
I want the submit button to disappear after it's clicked and a new layer
When click a button,I want to popup a view form bottom,like this! Any help
I have a code for new thread in a button new thread is created
All I want to do is start a thread to listen for communication on
I want to make a button that starts my php script after I click
I want to align a Custom Button Field (the Star on the Screenshot) to
I want button in vertically, for that i can extend the height and shrink

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.