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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:45:34+00:00 2026-05-26T15:45:34+00:00

I read in the docs that one should avoid using finish() – but I

  • 0

I read in the docs that one should avoid using finish() – but I don’t really see a better alternative for this…

I just like to know, if there is a better, cleaner way to do this…

Many thanks

This is what I basically need to do:

MainActivity 
   -> Sub1Activity
      -> MySMSActivity
         -> send SMS
         -> handle if SMS was sent or not
            <- finish()
      <- finish()
(skip Sub1Activity)
MainActivity

The code in MainActivity:

this.myBtn.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        doSub1Activity("xyz"); 
    }
});

public void doSub1Activity() {
    Intent i;
    i = new Intent(this, SUB1_screen.class);
    startActivity(i);
}

The code in Sub1Activity:

this.myBtn.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
       doMySMSActivity("xxx"); 
       finish();         //<- this is the 1. call to "finish" I am concerned about
    }
public void doMySMSActivity() {
    Intent i;
    i = new Intent(this, MySMSActivity.class);
    startActivity(i);
    }

The code in MySMSActivity:

private void sendSMS(String phoneNumber, String message)
    {        
        String SENT = "SMS_SENT";
        String DELIVERED = "SMS_DELIVERED";

        PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
                new Intent(SENT), 0);

        //---when the SMS has been sent---
        bRSMS_has_been_sent = new BroadcastReceiver(){
            @Override
            public void onReceive(Context arg0, Intent arg1) {

                switch (getResultCode())
                {
                case Activity.RESULT_OK:
                    ...
                    break;
                default: 
                    break;
                }
                finish();  // another call to finish so the user continues with
                                       // MainActivity after SMS has been sent...
            }
        }; 

        SmsManager sms = SmsManager.getDefault();
        sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);        
    }
  • 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-26T15:45:34+00:00Added an answer on May 26, 2026 at 3:45 pm

    You don’t have to call finish() multiple times. If you need to return to the main activity simply start it using an intent with the flags below. That will reuse the activity if it already exists.

    Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP

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

Sidebar

Related Questions

I read the part of the docs and saw that the ConfigParser returns a
The Adobe docs (I can't find which) state that Flash can read Shared Objects
I have read the docs and everything but I'm very confused. I never needed
I've read some docs about the .NET Garbage Collector but i still have some
When I read the Lucene.net docs, the only analyzer that I find is the
On one hand, I'm told that exceptions in C# are 'expensive', but on the
I just read in the docs that: Cocoa implements time according to the Network
I've read many docs about thread states, some of them tells that there is
I read about django signals ( http://docs.djangoproject.com/en/dev/topics/signals/ ), but as far as I understand,
I've read much of the MySQL Cluster docs and some tutorials yet I still

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.