8.4.7. DetailsFragment’s Layout: fragment_details.xml
When the user touches a contact in the MainActivity
, the app displays the DetailsFragment
(Fig. 8.10). This Fragment
’s layout (fragment_details.xml
) consists of a ScrollView
containing a vertical GridLayout
with two columns of TextView
s. A ScrollView is a ViewGroup that can contain other View
s (like a layout) and that lets users scroll through content too large to display on the screen. We use a ScrollView
here to ensure that the user can scroll through a contact’s details if a device does not have enough vertical space to show all the TextView
s in Fig. 8.10. Follow the steps in Section 5.4.8 to create the fragment_details.xml
file, but use a ScrollView
as the Root Element. After creating ...
Get Android™ How to Program, Second 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.