Adding Buttons

Update CrimeFragment’s layout to include new buttons for accusation and tattling: namely, a suspect button and a report button. First, add the strings that these buttons will display.

Listing 15.1  Adding button strings (res/values/strings.xml)

<resources>
    ...
    <string name="new_crime">New Crime</string>
    <string name="crime_suspect_text">Choose Suspect</string>
    <string name="crime_report_text">Send Crime Report</string>
</resources>

In res/layout/fragment_crime.xml, add two button widgets, as shown in Listing 15.2.

Listing 15.2  Adding CHOOSE SUSPECT and SEND CRIME REPORT buttons (res/layout/fragment_crime.xml)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ... > ... <CheckBox android:id="@+id/crime_solved" ...

Get Android Programming: The Big Nerd Ranch Guide, 4th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.