|
|
@ -1,6 +1,7 @@
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/input_bar_height"
|
|
|
|
android:layout_height="@dimen/input_bar_height"
|
|
|
|
android:orientation="vertical">
|
|
|
|
android:orientation="vertical">
|
|
|
@ -14,24 +15,49 @@
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:background="@color/red" />
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
|
|
|
android:layout_marginStart="@dimen/small_spacing"
|
|
|
|
|
|
|
|
android:background="@drawable/input_bar_button_background">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
|
|
|
android:layout_width="16dp"
|
|
|
|
|
|
|
|
android:layout_height="16dp"
|
|
|
|
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
|
|
|
|
android:src="@drawable/ic_plus_24"
|
|
|
|
|
|
|
|
app:tint="@color/text" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginStart="56dp"
|
|
|
|
android:layout_marginEnd="24dp" />
|
|
|
|
android:layout_marginEnd="56dp"
|
|
|
|
|
|
|
|
android:background="@color/red" />
|
|
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:background="@color/blue" />
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/small_spacing"
|
|
|
|
|
|
|
|
android:background="@drawable/input_bar_button_background">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
|
|
|
android:layout_width="16dp"
|
|
|
|
|
|
|
|
android:layout_height="16dp"
|
|
|
|
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
|
|
|
|
android:src="@drawable/ic_microphone"
|
|
|
|
|
|
|
|
app:tint="@color/text" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|