Tag Archives: activities

Basics Android Activities

  1. 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
  2. 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
  3. 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

  4. communication activity to activity
    myIntent.putExtra("Name","Manoj");

    and

    getIntent().getStringExtra("Name")

    http://stackoverflow.com/questions/4046612/activity-to-activity-communication

  5. first/home activity among many
    http://stackoverflow.com/questions/4642993/help-with-first-android-activity