Upgrade to Pro — share decks privately, control downloads, hide ads and more …

MAD Week 4 Lab 2

MAD Week 4 Lab 2

Marina Tanasyuk

February 28, 2020
Tweet

More Decks by Marina Tanasyuk

Other Decks in Education

Transcript

  1. Technical Labs - Building out a Flashcard App Lab 1:

    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
  2. New Concept - Intents ActivityA ActivityB Intent intent = new

    Intent(ActivityA.this, ActivityB.class); startActivity(intent);
  3. Intents - Pass / Receive Data // in ActivityA: Intent

    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” … }
  4. Working on Labs - Breakout rooms • The guide is

    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
  5. How to ask questions? 3. Slack @android-help 4. https://discussions.codepath.com/ (for

    when outside the class) 1. Ask people in your group 2. Ask for help from TAs and Instructors: