adding a button to start the recording

This commit is contained in:
tibbi
2020-03-28 19:26:59 +01:00
parent 55dcda8dbe
commit 353480df77
5 changed files with 41 additions and 5 deletions

View File

@ -4,4 +4,16 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>
<ImageView
android:id="@+id/toggle_recording_button"
android:layout_width="@dimen/toggle_recording_button_size"
android:layout_height="@dimen/toggle_recording_button_size"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="@dimen/big_margin"
android:background="@drawable/circle_background"
android:elevation="@dimen/medium_margin"
android:padding="@dimen/normal_margin"
android:src="@drawable/ic_mic_vector" />
</RelativeLayout>