+ - 0:00:00
Notes for current slide
Notes for next slide

CSE 340 Lab 2 (Winter 2021)

Week 2: Final Doodle Requirements and Layout Review

Slide 1 of 16

Doodle and Layout Timeline

  • Doodle due: Tonight @ 10:00pm

  • Doodle locked: Saturday, January 16th @ 10:00pm

    • Peer evaluations will be assigned by end of day
  • Doodle peer eval due: Sunday, January 17th @ 10:00pm

  • Doodle reflection due: Tuesday, January 19th @ 10:00pm

  • Layout part 1-2 due: Thursday, January 21 @ 10:00pm (No late days allowed)

  • Layout part 3-5 (code + reflection) due: Thursday, January 28 @ 10:00pm

Slide 2 of 16

Section 3 Objectives

  • Brief overview of different layout types in Android

  • Review previous layout exam problems

  • Layouts practice

Slide 3 of 16

Layout Types in Android

Slide 4 of 16

FrameLayout

  • FrameLayout is designed to block out an area on the screen to display a single item.
  • Can add multiple children to a FrameLayout and control their position by assigning gravity to each child (android:layout_gravity attribute)
  • Child views are drawn in a stack, with the most recently added child on top

Challenge for buttons in XML | Challenge with buttons to be added programatically|

Slide 5 of 16

LinearLayout

  • LinearLayout organizes its children into a single horizontal or vertical row.
  • Creates a scrollbar if the length of the window exceeds the length of the screen.

Linear layout of an email message with to line subject line and message arranged vertically

Slide 6 of 16

RelativeLayout

  • Enables you to specify the location of child objects relative to each other (child A to the left of child B) or to the parent (aligned to the top of the parent).

Challenge for buttons in XML | Challenge with buttons to be added programatically|

Slide 7 of 16

TableLayout

  • TableLayout arranges its children into rows and columns
  • Can leave the cells empty
  • Why choose this over GridLayout?
    • Not much data, fixed

Challenge for buttons in XML | Challenge with buttons to be added programatically|

Slide 8 of 16

GridLayout

  • GridLayout places its children in a rectangular grid
  • Must define the number of rows and columns first, then populate with Views
  • Why choose this over TableLayout?
    • Easy to arrange lots of data because you don’t need to specify each View’s width and height

Challenge for buttons in XML | Challenge with buttons to be added programatically|

Slide 9 of 16

Constraint Layout

A simple layout on an android watch with a textview and two
buttons (save and discard) and the constraints highlighted

  • ConstraintLayout is a ViewGroup that allows you to position widgets in a flexible way
  • Useful for building responsive interfaces in Android.
  • You can see little lines connecting the textView to its container and it's sibling (the linearLayout).
    • This specifies how it's attached (can change type by clicking on right)
    • If you were to change the interface (e.g. a different sized screen), it would stay attached and keep filling the space
Slide 10 of 16

Previous exam problem of Layout

Slide 11 of 16

Worksheet: Interactor Hierarchy

What would be the Component Tree for the Layout Part 1-2 program?

diagram of the interactor hierarchy shown on the next slide in graphic form

Slide 12 of 16

Worksheet: Interactor Hierarchy

What would be the Component Tree for the Layout Part 1-2 program?

diagram of the interactor hierarchy shown on the next slide in graphic form

LinearLayout
StatusBar
RelativeLayout
ScrollView
BottomNav
ConstraintLayout
ImageView
...
ImageView
Slide 13 of 16

Previous Exam Question Solution

What is the basic idea you have for how to fix it?

Constrain the top of the scroll to the bottom of the text view.

Which view would you need to modify (provide the value you would set android:id to)?

@+id/scrollView

What one line of XML would you add? Pseudocode ok here, you don't have to use exact names.

app:layout_constraintTop_toBottomOf="@id/textView"

Slide 14 of 16

Practice with the Layout Lab

Create this layout using XML Create this layout programatically
Challenge for buttons in XML Challenge with buttons to be added programatically
Slide 15 of 16

- GitHub Link to Solution

Don't peek until you've tried it :)

Slide 16 of 16

Doodle and Layout Timeline

  • Doodle due: Tonight @ 10:00pm

  • Doodle locked: Saturday, January 16th @ 10:00pm

    • Peer evaluations will be assigned by end of day
  • Doodle peer eval due: Sunday, January 17th @ 10:00pm

  • Doodle reflection due: Tuesday, January 19th @ 10:00pm

  • Layout part 1-2 due: Thursday, January 21 @ 10:00pm (No late days allowed)

  • Layout part 3-5 (code + reflection) due: Thursday, January 28 @ 10:00pm

Slide 2 of 16
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
s Start & Stop the presentation timer
t Reset the presentation timer
?, h Toggle this help
Esc Back to slideshow