first of all, i’m a noob at java programing for android.
Now, I have a button in the main layout that suppose to call an activity, now what do I write in the onClick method of the button? and I can’t use onCreate in the activity that is being called, so what do I use in there?
thanks
first of all, i’m a noob at java programing for android. Now, I have
Share
Put this code in the
onClickmethod:The system will start the activity
Activityas soon as possible, which will lead to it’sonCreatemethod being called.