diff options
Diffstat (limited to 'app/src/main/res/layout/soundrecorder.xml')
-rw-r--r-- | app/src/main/res/layout/soundrecorder.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/layout/soundrecorder.xml b/app/src/main/res/layout/soundrecorder.xml new file mode 100644 index 0000000..58b62a2 --- /dev/null +++ b/app/src/main/res/layout/soundrecorder.xml @@ -0,0 +1,19 @@ +<?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="wrap_content">
+ <Button
+ android:id="@+id/Record"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:text="Record"
+/>
+ <Button
+ android:id="@+id/Stop"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:text="Stop"
+/>
+</LinearLayout>
|