remove unnecessary frame on stt dialog

This commit is contained in:
adrienmalin 2018-12-14 17:42:21 +01:00
parent 8879b6c6d2
commit 222c414cf2

View File

@ -1,30 +1,24 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent" android:orientation="vertical"
tools:context=".SttDialog"> android:layout_width="match_parent"
android:layout_height="match_parent"
<!-- TODO: Update blank fragment layout --> tools:context=".SttDialog">
<LinearLayout <ImageView
android:orientation="vertical" app:srcCompat="@drawable/ic_stt"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="wrap_content" android:id="@+id/icStt" android:layout_margin="8dp"
<ImageView android:contentDescription="@string/STT"/>
app:srcCompat="@drawable/ic_stt" <TextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/icStt" android:layout_margin="8dp" android:layout_height="wrap_content"
android:contentDescription="@string/STT"/> android:text="@string/STT_hint" android:id="@+id/sttHintTextView"
<TextView android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:gravity="center"
android:layout_width="match_parent" android:layout_marginLeft="8dp" android:layout_marginRight="8dp"/>
android:layout_height="wrap_content" <TextView
android:text="@string/STT_hint" android:id="@+id/sttHintTextView" android:layout_width="match_parent"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:gravity="center" android:layout_height="wrap_content" android:id="@+id/partialResultTextView"
android:layout_marginLeft="8dp" android:layout_marginRight="8dp"/> android:layout_margin="8dp" android:gravity="center" android:text="@string/not_understood"/>
<TextView </LinearLayout>
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/partialResultTextView"
android:layout_margin="8dp" android:gravity="center" android:text="@string/not_understood"/>
</LinearLayout>
</FrameLayout>