• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    <FrameLayout
10        android:id="@+id/content"
11        android:layout_width="match_parent"
12        android:layout_height="0dp"
13        android:layout_weight="1" />
14
15    <TextView
16        android:id="@+id/counterTextView"
17        android:layout_width="wrap_content"
18        android:layout_height="wrap_content"
19        android:paddingEnd="24dp"
20        android:paddingStart="24dp"
21        android:paddingTop="8dp"
22        android:text="0"
23        android:textSize="10sp" />
24
25    <TextView
26        android:id="@+id/statusTextView"
27        android:layout_width="wrap_content"
28        android:layout_height="wrap_content"
29        android:paddingEnd="24dp"
30        android:paddingStart="24dp"
31        android:paddingTop="24dp"
32        android:textSize="10sp"
33        tools:text="com.airbnb.android" />
34</LinearLayout>