Fixes #4297 - UI Issue: After changing the system theme from settings (#4332)

* fix UI issue after theme change

* removed unnecessary changes

Co-authored-by: Pratham2305 <Pratham2305@users.noreply.github.com>
This commit is contained in:
Pratham Pahariya 2021-04-08 23:21:07 +05:30 committed by GitHub
parent 153e57264d
commit 58408cf2b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 19 additions and 3 deletions

View file

@ -34,6 +34,7 @@
android:id="@+id/viewPagerBookmarks"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar_layout" />
android:layout_below="@id/toolbar_layout"
android:background="?attr/mainBackground" />
</RelativeLayout>

View file

@ -34,5 +34,6 @@
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar_layout" />
android:layout_below="@id/toolbar_layout"
android:background="?attr/mainBackground"/>
</RelativeLayout>

View file

@ -3,7 +3,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="@dimen/tiny_gap">
android:paddingTop="@dimen/tiny_gap"
android:background="?attr/mainBackground">
<TextView
android:id="@+id/contentNotFound"

View file

@ -6,4 +6,5 @@
android:layout_height="?attr/actionBarSize"
android:fitsSystemWindows="true"
app:titleTextColor="?attr/toolbar_text_color"
android:background="?attr/mainBackground"
/>