make bottom sheets' background white

This commit is contained in:
AndyScherzinger 2018-04-30 13:45:15 +02:00
parent a0d778235d
commit 439d34f918
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
android:id="@+id/bottom_sheet" android:id="@+id/bottom_sheet"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="?android:attr/windowBackground" android:background="@color/white"
app:layout_behavior="@string/appbar_scrolling_view_behavior"> app:layout_behavior="@string/appbar_scrolling_view_behavior">

View File

@ -20,5 +20,5 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="bottom" android:layout_gravity="bottom"
android:animateLayoutChanges="true" android:animateLayoutChanges="true"
android:background="?android:attr/windowBackground"/> android:background="@color/white"/>
</android.support.design.widget.CoordinatorLayout> </android.support.design.widget.CoordinatorLayout>