diff options
author | Joe Robinson <joe@lc8n.com> | 2015-12-15 20:43:45 +0000 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2015-12-15 20:43:45 +0000 |
commit | 30d164851ac3d4e7397e010baa24a8e5cb0dc090 (patch) | |
tree | fcb45696618d4588fb4fcd052db2c217e587d82e /app/build/intermediates/res/merged/debug/layout/home.xml | |
parent | eb7c5e7d7b332fb488658bb84066b0b3c516896e (diff) |
Diffstat (limited to 'app/build/intermediates/res/merged/debug/layout/home.xml')
-rw-r--r-- | app/build/intermediates/res/merged/debug/layout/home.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app/build/intermediates/res/merged/debug/layout/home.xml b/app/build/intermediates/res/merged/debug/layout/home.xml new file mode 100644 index 0000000..a68954f --- /dev/null +++ b/app/build/intermediates/res/merged/debug/layout/home.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+ <Button
+ android:id="@+id/browse"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:layout_weight="1"
+ android:text="Upload File"
+ />
+ <Button
+ android:id="@+id/audio"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:layout_weight="1"
+ android:text="Record Audio"
+ />
+ <Button
+ android:id="@+id/locate"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:layout_weight="1"
+ android:text="Find Location"
+ />
+
+</LinearLayout>
|