July 2015
Beginner to intermediate
600 pages
18h 59m
English
In a moment, you will create the CrimeListActivity class that is designed to host a CrimeListFragment. First, you are going to set up a view for CrimeListActivity.
For CrimeListActivity, you can simply reuse the layout defined in activity_crime.xml (Listing 9.4). This layout provides a FrameLayout as a container view for a fragment, which is then named in the activity’s code.
Listing 9.4 activity_crime.xml is already generic
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/fragment_container" android:layout_width="match_parent" android:layout_height="match_parent" ...
Read now
Unlock full access