Build Layouts and Handle User Interaction Lab 2: Create content and take users through different flows Lab 3: Save data Lab 4: Polish App with animations and styling
intent = new Intent(ActivityA.this, ActivityB.class); intent.putExtra("key", "some info to send"); startActivity(intent); // in ActivityB: protected void onCreate(Bundle savedInstanceState) { … String data = getIntent().getStringExtra(“key"); // data = “some info to send” … }
on Lab tab for Week 4 • Required tasks - due by Friday, March 6th at 11:59pm PST • Optionals are optional • Turn on your camera • Introduce yourself • Support each other