To Lecture Notes

IT 372 -- Apr 2, 2025

Review Exercises

  1. What are some Android API version names?
    Answer: Here is a list of these version names, named after deserts or sweets: apilevels.com
  2. What are the two source code files that Android Studio creates by default for a new project?
    Answer: activity_main.xml  MainActivity.java
  3. Recreate the TextDisplay app from Monday's class; call your app TextDisplay2. Change the layout to LinearLayout and set the text in the TextView widget to "Hello, my name is <your name>" :
    android:text="Hello, my name is Stan."
    
    Add this attribute to the TextView widget:
    android:gravity="center"
    
    The resulting layout and activity files are
         activity_main.xml   MainActivity.java
    Then make these additional changes to the app:
    1. Remove the android:gravity="center" attribute from the layout.
    2. Add a new TextView widget to the top of the layout with text that represents the title of the app. For example:
      android:text="TextDisplay Example"
      
    3. Set the orientation of the linear layout to vertical:
      android:orientation="vertical"
      
    4. Add top and left margins to the title:
      android:layout_marginTop="20dp"
      android:layout_marginLeft="50dp"
      
    5. Add top and left margins to the display text:
      android:layout_marginTop="200dp"
      android:layout_marginLeft="50dp"
      
    6. Change the background color of the layout to yellow:
      android:background="#FFFF00"
      
    7. Change the text color of the textviews to teal (dark blue-green):
      android:background="#008080"
      
    Here is the resulting layout file after these changes:
         activity_main.xml
  4. What do the XML attribute values match_parent and wrap_content do?

XML Primer

Device Independent Pixels

Some LinearLayout and TextView Attributes

Resource Files

Setting up a Click Event Handler

Projects 1a and 1b

  1. Look again at Project 1a and Project 1b.