-
Notifications
You must be signed in to change notification settings - Fork 428
/
Copy pathactivity_share_data.xml
53 lines (45 loc) · 1.96 KB
/
activity_share_data.xml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activities.ShareDataActivity">
<LinearLayout
android:id="@+id/linear_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:layout_marginBottom="@dimen/layout_margin_extra_small"
android:gravity="center"
android:orientation="vertical">
<Button
android:id="@+id/share_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_bg_rounded"
android:onClick="onShareClicked"
android:text="@string/share_nav_drawer"
android:textAlignment="center"
android:textColor="@color/color_white_background"
android:textSize="@dimen/text_size_large"
android:textStyle="bold" />
</LinearLayout>
<ListView
android:id="@+id/fileListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/linear_layout"
android:layout_below="@+id/fileNumberView"
android:layout_alignParentStart="true"
android:layout_marginTop="@dimen/layout_margin_medium"
android:layout_marginBottom="@dimen/layout_margin_medium" />
<TextView
android:id="@+id/fileNumberView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="@dimen/layout_margin_medium"
android:textAlignment="center"
android:textSize="@dimen/text_size_larger" />
</RelativeLayout>