Android high imitation Netease News Night model, android Netease news

Source: Internet
Author: User

Android high imitation Netease News Night model, android Netease news

Netease news has a small function. Although its functions are small, we can see that the product design of large companies is indeed very good. Today we have implemented the next function, if you click "Night mode" or "Daytime mode", all activity backgrounds must be changed. In fact, the android Source Code defines an id for each activity content area, that is, android. r. id. content, because the background of all activities must change color, you must write a base class. The Code is as follows:


Public class BaseActivity extends Activity {protected void onCreate (android. OS. bundle savedInstanceState) {super. onCreate (savedInstanceState) ;}; @ Overridepublic void setContentView (int layoutResID) {super. setContentView (layoutResID); (ViewGroup) findViewById (android. r. id. content )). getChildAt (0 )). setBackgroundColor (getResources (). getColor (true? R. color. root_view_background_color_night: R. color. root_view_background_color ));}}

When a user clicks the day or night mode, a value must be stored in SharedPreferences. In the code above, the value is true. If the real project is definitely read from the SharedPreferences file, that's it. It's easy!


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.