summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/pending_row.xml
blob: ec5aa2cf1863cacab7b4df486079a0125726560a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="wrap_content">

        <TextView
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:id="@+id/pending_text"
                  android:textSize="24sp" tools:text="My Pending Operation">
        </TextView>

        <TextView
                android:id="@+id/pending_subtext"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="14sp"
                tools:text="My further details" />

</LinearLayout>