Problem record-blank page displayed after Activity jump,-activity jump

Source: Internet
Author: User

Problem record-blank page displayed after Activity jump,-activity jump

I wrote a simple Android notepad two days ago. The page that jumps from the main interface to the add content page is always blank.

The setContentView xml file is displayed normally in the visual development environment. After being instructed by the predecessors, it turns out that the onCreate function has encountered a problem.

Before Android 5.0, The onCreate function defaults

@ Override protected void onCreate (Bundle savedInstanceState) {super. onCreate (savedInstanceState );}

In Android 5.0, an onCreate function with the PersistableBundle parameter is provided.

@ Override public void onCreate (Bundle savedInstanceState, PersistableBundle persistentState) {super. onCreate (savedInstanceState, persistentState );}

The PersistableBundle parameter is deleted and the super. onCreate (savedInstanceState, persistentState) is retained );

Therefore, the problem that the blank interface is always displayed. How can this problem be caused and how to use the PersistableBundle parameter? What I have learned is not well understood yet. If I have learned it in the future, I should re-describe the problem. here,

Write down the problem that took me a lot of time to debug and provide reference.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.