1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3  android:layout_width="match_parent"
4  android:layout_height="wrap_content"
5  android:background="@drawable/loading_progress_popup_background"
6  android:padding="10dp">
7
8  <TextView
9    android:id="@+id/status_text_view"
10    android:layout_width="0dp"
11    android:layout_height="wrap_content"
12    android:layout_weight="1"
13    android:textColor="#a7a7a7"
14    android:textSize="12sp" />
15
16  <TextView
17    android:id="@+id/percentage_text_view"
18    android:layout_width="wrap_content"
19    android:layout_height="wrap_content"
20    android:textColor="#a7a7a7"
21    android:textSize="12sp" />
22</LinearLayout>
23