1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:orientation="vertical" 7 android:padding="24dp"> 8 9 <TextView 10 android:id="@+id/statusTextView" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:textSize="10sp" 14 tools:text="com.airbnb.android" /> 15 16 <TextView 17 android:id="@+id/counterTextView" 18 android:layout_width="wrap_content" 19 android:layout_height="wrap_content" 20 android:text="0" 21 android:textSize="10sp" /> 22</LinearLayout>