]> Pileus Git - ~andy/freeotp/blob - res/layout/main.xml
Display text when no keys are installed.
[~andy/freeotp] / res / layout / main.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3         android:orientation="vertical"
4         android:layout_width="match_parent"
5         android:layout_height="match_parent"
6         >
7
8     <TextView
9         android:id="@android:id/empty"
10         android:layout_width="match_parent"
11         android:layout_height="match_parent"
12         android:padding="8dp"
13         android:gravity="center"
14         android:text="@string/no_keys"
15         />
16
17     <ListView
18         android:id="@android:id/list"
19         android:layout_width="match_parent"
20         android:layout_height="0dp"
21         android:layout_weight="1"
22         android:drawSelectorOnTop="false"
23         />
24 </LinearLayout>