Fixes layout inflate exception due to missing width attribute (#371)

This commit is contained in:
Martijn Brekhof 2017-03-15 15:04:34 +01:00 committed by Synced Synapse
parent 8d983d605c
commit 35724bb8be
1 changed files with 4 additions and 0 deletions

View File

@ -37,11 +37,15 @@
<TextView
android:id="@+id/info_title"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="@style/TextAppearance.Info.Title"
tools:ignore="InconsistentLayout"/>
<TextView
android:id="@+id/info_message"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="@style/TextAppearance.Info.Details"
android:layout_below="@id/info_title"
tools:ignore="InconsistentLayout"/>