- just created my first activity, reminds me of a mvc plugin to visual studio
simply wonderfull
http://stackoverflow.com/questions/2337874/best-way-to-add-activity-to-an-android-project-in-eclipse - hmm, i missed that one.. new android layout
http://stackoverflow.com/questions/9194366/how-to-create-a-new-layout-for-an-android-project-using-eclipse - opening/showing new activity
Intent myIntent = new Intent(HelloAndroidActivity.this,AddNewListOfNotes.class); HelloAndroidActivity.this.startActivity(myIntent);
http://www.dotnetexpertsforum.com/how-to-open-a-new-activity-from-button-click-in-android-t1322.html
- communication activity to activity
myIntent.putExtra("Name","Manoj");and
getIntent().getStringExtra("Name")http://stackoverflow.com/questions/4046612/activity-to-activity-communication
- first/home activity among many
http://stackoverflow.com/questions/4642993/help-with-first-android-activity
Basics Android Activities
Leave a reply