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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:14:09+00:00 2026-05-16T07:14:09+00:00

In my android application , i have three pages A,B,C.All the three pages have

  • 0

In my android application , i have three pages A,B,C.All the three pages have table layout.If i person clicks on a particular row other page related to that row will display.
Now what i require is if a person clicks on back after the second page,I need to focus the row which he had clicked in the first page on his return.
Can i do this in android
Please reply your valuable suggestions.

My code after Totramonhave suggested is.

Here in amy code i am generating rows dynamically.

public void onClick(View v) {
    // TODO Auto-generated method stub
    flag=v.getId();
    if(v.getId()==1)
    {
        Intent i = new Intent(TableImageLayout.this, TableImageLayout3.class);
        startActivity(i);

    }
    if(v.getId()==3)
    {
        Intent i = new Intent(TableImageLayout.this, TableImageLayout3.class);
        startActivity(i);

    }
    if(v.getId()==5)
    {
        Intent i = new Intent(TableImageLayout.this, TableImageLayout3.class);
        startActivity(i);
    }

    if(v.getId()==7)
    {
        Intent i = new Intent(TableImageLayout.this, TableImageLayout3.class);
        startActivity(i);
    }

    if(v.getId()==100)
    {
        Intent i = new Intent(TableImageLayout.this, TableImageLayout3.class);
        startActivity(i);
    }   

}



@Override
public void onFocusChange(View v, boolean hasFocus) {
    // TODO Auto-generated method stub

        if(hasFocus)
    {
        ((TableRow)v).setBackgroundColor(Color.rgb(255, 180, 40));
    }
    else
        {((TableRow)v).setBackgroundColor(Color.BLACK);}

}
    protected void onResume() { 
        super.onResume();
        tr[flag].requestFocus();
        tr[flag].setFocusableInTouchMode(true);
        if(tr[flag].hasFocus())
        {
            tr[flag].setBackgroundColor(Color.rgb(255, 180, 40));
        }
        else
            {tr[flag].setBackgroundColor(Color.BLACK);}
    }



     @Override   
     public void onPause() {      
    super.onPause();        

     }

Thanks in advance 🙂

  • 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-16T07:14:09+00:00Added an answer on May 16, 2026 at 7:14 am

    There are many ways to do this. I assume A, B, C and the page to start (D) are all Activities. You could store the selection, say in activity B, in a member variable before starting the sub activity D (for example in onPause()), and restore focus when control returns to B’s onResume(). Or you could give the parameter to D in the intent’s extras, or the requestCode parameter to startActivityForResult() and return the same value from D by a call to setResult(), which you’ll receive to B’s onActivityResult().

    onPause is called automatically when an Activity halts, and is often the place where you want to save something before giving up control. This happens after you have started activity D, but before it is brought to front. You only need to implement the function in your activity:

    public void onPause() {
      // set the member variable somehow
      super.onPause();
    }
    

    Although, it probably makes more sense to save the clicked row immediately in the row’s onClick or onItemSelected event, or wherever you start the sub activity.

    onResume is also called automatically when returning from the sub activity, all you need to do is implement it.

    public void onResume() {
      requestFocus(mSavedRow);
      super.onResume();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two threads in an Android application, one is the view thread, and
In my Android application, when I rotate the device (slide out the keyboard) then
In Android, when layout out widgets, what's the difference between fill_parent ( match_parent in
I'm doing some Android development, and I much prefer Visual Studio, but I'll have
I'm building an Android app and I want to copy the text value of
I understand the Android OS is based on Linux. Does that mean the G1
Has anyone managed to use ItemizedOverlays in Android Beta 0.9? I can't get it
I've been working on the Android SDK platform, and it is a little unclear
Now that the G1 with Google's Android OS is now available (soon), will the
I am creating a matching game for Android, and when the user gets a

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.