Android Global Variables use

Source: Internet
Author: User

1, through a Data.java instance class, can achieve global data preservation, here is not much to say, learn Java know.


2, Android-specific application, is the application of the portal, running through the entire app running process, you can define the global variables in this class

public class Baseapplication extends application {private float screenwidth;private float screenheight;public float GETSC Reenwidth () {return screenwidth;} public void Setscreenwidth (float screenwidth) {this.screenwidth = ScreenWidth;} public float Getscreenheight () {return screenheight;} public void Setscreenheight (float screenheight) {this.screenheight = ScreenHeight;}}

Call directly when using:

                Baseapplication b= (baseapplication) Getapplicationcontext ();        float width=b.getscreenwidth ();        float height=b.getscreenheight ();





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.