标签:des android http io os java ar for div
http://www.raywenderlich.com/56107/make-first-android-app-part-1
Activity
, but it certainly won’t be the last. In Android, an Activity
is usually thought of as a “screen” in your app. It could be fullscreen or it could be a partial-screen pop-up. It is very flexible. If you want your user interacting with something in your app, that’s at some level happening via an Activity
.
MainActivity
, what it’s doing is making a subclass of Activity
. Those familiar with object-oriented programming will know what this is, but for newcomers, this basically means that your MainActivity
is going to be a customized version of Activity
that acts just like the default one, handling things like its lifecycle and the user interface display.MainActivity
in Java, but the layout of everything it will show to the user is defined in a special sort of Android XML. You will learn how to read and edit those files soon.
标签:des android http io os java ar for div
原文地址:http://www.cnblogs.com/wingjay/p/3981421.html