Skip to content

Commit 5686ee9

Browse files
author
Dmitry Tretyakov
committed
build(debug): 41
1 parent 64444c0 commit 5686ee9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

app/src/main/res/layout-night/activity_conversation.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7+
android:background="?android:attr/windowBackground"
78
android:fitsSystemWindows="true">
89

910
<androidx.recyclerview.widget.RecyclerView

app/src/main/res/layout/activity_conversation.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
xmlns:app="http://schemas.android.com/apk/res-auto"
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
6-
android:layout_height="match_parent">
6+
android:layout_height="match_parent"
7+
android:background="?android:attr/windowBackground">
78

89
<androidx.recyclerview.widget.RecyclerView
910
android:id="@+id/messages_view"
@@ -21,6 +22,7 @@
2122
android:id="@+id/sendTextBottomPanel"
2223
android:layout_width="match_parent"
2324
android:layout_height="wrap_content"
25+
android:background="?android:attr/windowBackground"
2426
app:layout_constraintBottom_toBottomOf="parent"
2527
app:layout_constraintEnd_toEndOf="parent"
2628
app:layout_constraintStart_toStartOf="parent"
@@ -31,6 +33,7 @@
3133
android:layout_width="match_parent"
3234
android:layout_height="wrap_content"
3335
android:background="?attr/colorPrimary"
36+
android:minHeight="?attr/actionBarSize"
3437
android:theme="@style/ApplicationTheme.Toolbar"
3538
app:contentInsetStartWithNavigation="0dp"
3639
app:layout_constraintBottom_toTopOf="@+id/messages_view"
@@ -39,7 +42,6 @@
3942
app:layout_constraintTop_toTopOf="parent"
4043
app:menu="@menu/app_main"
4144
app:navigationIcon="@drawable/ic_menu"
42-
app:title="@string/app_name"
43-
android:minHeight="?attr/actionBarSize"/>
45+
app:title="@string/app_name" />
4446

4547
</androidx.constraintlayout.widget.ConstraintLayout>

0 commit comments

Comments
 (0)