• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps help me..`

ProPig

Lurker
what is the meaning of class stub? ( i found this term in the android developers )
Also, can anyone explain to me about Context? The definition given by Android developers is "A Context is a handle to the system". What handle is that? and what is the function of handle?
 
"A Context is a handle to the system". - Simply put, it means that the Context object is where you can get other system resources - e.g. if you want to use the GPS, you get the LocationManager from the Context.

Where exactly did you find "class stub"? In which context?
 
Hello, World | Android Developers
you can find it at above link..~
Create ActivityThis is the name for the class stub that will be generated by the plugin. This will be a subclass of Android's Activity class. An Activity is simply a class that can run and do work. It can create a UI if it chooses, but it doesn't need to. As the checkbox suggests, this is optional, but an Activity is almost always used as the basis for an application.
 
Back
Top Bottom