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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:41:40+00:00 2026-05-26T11:41:40+00:00

I am putting focus on a view but when I change orientation the focus

  • 0

I am putting focus on a view but when I change orientation the focus is lost from that view .
does onConfigurationChanged() handles focus?
or i need to explicitly set it and if yes then how can I set focus ?
I need to keep track of current focusing view .how to do that?

  • 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-26T11:41:41+00:00Added an answer on May 26, 2026 at 11:41 am

    Override the onSaveInstanceState and onRestoreInstanceState methods in your Activity. You can then keep track of whatever view has focus by grabbing the ID of the view and saving it to the Bundle in the onSaveInstanceState method. Then in the onRestoreInstanceState method, you just grab the ID and find the view with that ID. You don’t even need to cast it or anything. You then just request focus for that view. It will look like this:

    @Override
    protected void onSaveInstanceState(Bundle outState) {       
        int viewId = this.getCurrentFocus().getId();
        outState.putInt("hasFocus", viewId);
    
        super.onSaveInstanceState(outState);
    }
    
    @Override
    protected void onRestoreInstanceState(Bundle savedInstanceState) {      
        super.onRestoreInstanceState(savedInstanceState);
    
        int viewId = savedInstanceState.getInt("hasFocus");
        View view = findViewById(viewId);
        view.requestFocus();        
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I putting together a page that will display a set of stored values. I
I have been putting only jQuery mask so far, but I figured out that
Putting aside the disdain from junk marketing I need to send around 15,000 emails
what does putting () after a word do? sometimes it doesn't work
I need to keep the focus on the text input when the user moves
I have a View that has a single TextBox and a couple Button s
After putting some code to work, I'm trying to optimize it. One thing that
I'm putting together a little application that involved both a GUI, HTTP and TCP
How can I detect that the telephone does not have hardware keyboard and only
Putting together a collection of Bash scripts that will be released to a wider

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.