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

CSE 340 Lab 3 (Spring 2020)

Week 3: Layout

Slide 1 of 19

Layout Timeline

  • Layout part 1-2 due: Tomorrow @ 10:00pm (No late days allowed)

  • Layout part 3-4 and Reflection due: Next Thursday, April 23 @ 10:00pm

    • Lock: Saturday, April 25 @ 10:00pm (If you are using late days)
Slide 2 of 19

Instruction for turning in Layout part 3-4

Slide 3 of 19

Section 3 Objectives

  • User Interfaces on Android

    • ConstraintLayout
    • Interactor Hierarchy
  • LayoutInflater

    • XML vs. Programmatic (Java)
  • Previous exam problem of Layout

Slide 4 of 19

User Interfaces on Android

  • Views
    • Base class for all UI elements
    • Interactors (e.g buttons, labels, image views, etc)
  • ViewGroups
    • Encapsulates one or more views (e.g. Android Components, Layouts)
    • Can define specific layout properties
  • Layout
    • Defines the structure for the user interface (UI) of your app
    • View and ViewGroup objects live within Layouts
    • We will use the word Components to include both layout components and interactors (Views) since you don't generally "interact" with layouts
ViewGroup
ViewGroup
View
View
View
View
View
Slide 5 of 19

Layout in Android

Where we left off: "Many layout and other attributes for components. You should explore!"

Picture of the whole android layout interface showing the possible components that can be added; the component tree (interactor hierarchy; and the attributes for the Save Button; which is selected

Slide 6 of 19

Layout Types in Android

  • FrameLayout - good for position views on top of each other, or encapsulating a bunch of views. Used in Doodle.

  • LinearLayout - places views one after the other in order according to the orientation (Horizontal or Vertical). Used in Layout.

  • RelativeLayout - Positions of the children are desribed in relation to one another

  • TableLayout - Rows and columns style way of declaring a layout

  • GridLayout - Uses an adapter that provides items to display in a grid

  • ConstraintLayout Let's you use constraints to specify how things should lay out. Used in Layout.

Slide 7 of 19

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
    • All ends up in XML you can explore too
Slide 8 of 19

What are Constraints?

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

  • Very general
  • Can reproduce most other things
  • Can operate on multiple axes
  • Can enhance other layout options
Slide 9 of 19

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 10 of 19

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 11 of 19

LayoutInflater

  • Accepts a valid XML file and converts it into a View object or interactor hierarchy.

  • In Part 3 you will code part of it in an XML file and the rest programmatically (Java).

  • Why? (Discuss about pros and cons of constructing layout with XML and programmatically)

Slide 12 of 19

XML vs. Programmatic (Java)

  • XML is easier setting up the Layouts

  • XML shows the Layouts directly

  • XML can be inflated many times

XML vs Programmatic Java

Slide 13 of 19

XML vs. Programmatic (Java)

  • Programmatic is easier adding items to the Layouts

  • Programmatic can use loops

  • Sample solution of adding items into Layout in Part 1 (XML) has 55 lines

  • Sample solution of adding items into Layout in Part 2 (Java) has 17 lines

Slide 14 of 19

How do we use the LayoutInflater?

  1. Setting up the LayoutInflater

    // Obtains the LayoutInflater from the given context
    LayoutInflater.from(Context context)
  2. Inflate

    // Inflate a new view hierarchy from the specified XML resource
    inflate(int resource, ViewGroup root)
Slide 15 of 19

Worksheet: Quick Exercise

Construct a LayoutInflater and pass in the part1.xml file.

Slide 16 of 19

Quick Exercise Solution

public Part1View(Context context, List<String> imageNames, int vMargin) {
// Obtain the inflater from the context
LayoutInflater inflater = LayoutInflater.from(context);
// Inflate R.layout.part1
View newView = inflater.inflate(R.layout.part1, null); // newView is at the root of the inflated tree
// Add it to this view
this.addView(newView);
}
Slide 17 of 19

Previous Exam Question

Slide 18 of 19

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 19 of 19

Layout Timeline

  • Layout part 1-2 due: Tomorrow @ 10:00pm (No late days allowed)

  • Layout part 3-4 and Reflection due: Next Thursday, April 23 @ 10:00pm

    • Lock: Saturday, April 25 @ 10:00pm (If you are using late days)
Slide 2 of 19
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