In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)05/31 Report--
This article "how to use Application to set global variables in Android" article knowledge points most people do not understand, so Xiaobian to summarize the following content, detailed content, clear steps, has a certain reference value, I hope you can read this article to gain something, let's take a look at this article "how to use Application to set global variables in Android" article bar.
Application Setting global variables and passing values
public class MyApplication extends Application {private String name;@Overridepublic void onCreate() {super.onCreate();setName(NAME); //Initialize global variables}public String getName() {return name;}public void setName(String name) {this.name = name;}private static final String NAME = "MyApplication";}
Ok, the application is created, but we should add the application MyApplication to be run in the configuration file ApplicationManifest.xml, and modify it as follows:
That's right here. We'll set the default Application we used all the time to MyApplication we made ourselves.
When the xml configuration file runs android:name=".MyApplication">, then the process ID is assigned, and then we will run our Activity.
public class MyFirstActivity extends Activity {private MyApplication app;@Overridepublic void onCreate (Bundle savedInstanceState) {super.onCreate (savedInstanceState);setContentView (R.layout.main);app =(MyApplication) getApplication(); //Get our application MyApplicationLog.e ("MyFirstActivityOriginal", app.getName()); //Take out the global variable we put in the process to see if it is the value we set app.setName ("is cool"); //OK, now we start modifying Log.e.("MyFirstActivityChanged", app.getName()); //Look again, this value changed No Intent = new Intent();//More importantly, we can see whether we get the initialized value in another Activity or the modified intent.setClass(this, MySecondActivity.class);startActivity(intent);}}
When you finish running above, you will jump to this Activity
public class MySecondActivity extends Activity {private MyApplication app;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);app = (MyApplication) getApplication(); //Get App Log.e("MySecondActivity", app.getName()); //Get Global Value}}
OK, look at the value: of course I've run it,
MyFirstActivityOriginal MyApplication MyFirstActivityChanged is coolMySecondActivity is cool The above is about the content of this article "How to use Application to set global variables in Android". I believe everyone has a certain understanding. I hope the content shared by Xiaobian will be helpful to everyone. If you want to know more related knowledge content, please pay attention to the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.