-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_main.xml
28 lines (24 loc) · 987 Bytes
/
activity_main.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
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".ui.main.MainActivity">
<include
android:id="@+id/pp"
layout="@layout/widget_photo_picker" />
<Button
android:id="@+id/btn_path"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Get path" />
<Button
android:id="@+id/btn_with_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Example With Desc" />
</androidx.appcompat.widget.LinearLayoutCompat>