forked from angelsl/Wabbitemu-Android
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbrowse.xml
More file actions
36 lines (31 loc) · 1.26 KB
/
Copy pathbrowse.xml
File metadata and controls
36 lines (31 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/browseLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/browseLoadingSpinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical"
android:visibility="gone" >
<ProgressBar
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:text="@string/loading" />
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:id="@+id/browseView"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:isScrollContainer="true" />
</RelativeLayout>