diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-03-27 01:51:53 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-03-27 01:51:53 +0000 |
commit | 6ad725762ba11100b7373767d8c3c3feee88364c (patch) | |
tree | 7ddb1fc3267e9910ca73a2d982190afc010c571a /app/src/main/res/layout | |
parent | 3dca261deaa2674b1faca52fec213f6cc960a61f (diff) | |
download | infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.tar infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.tar.gz infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.tar.bz2 infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.tar.lz infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.tar.xz infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.tar.zst infinity-for-reddit-6ad725762ba11100b7373767d8c3c3feee88364c.zip |
Still implementing custom themes.
Diffstat (limited to 'app/src/main/res/layout')
6 files changed, 6 insertions, 6 deletions
diff --git a/app/src/main/res/layout/activity_custom_theme_listing.xml b/app/src/main/res/layout/activity_custom_theme_listing.xml index 260453e6..37b8f878 100644 --- a/app/src/main/res/layout/activity_custom_theme_listing.xml +++ b/app/src/main/res/layout/activity_custom_theme_listing.xml @@ -45,7 +45,7 @@ android:layout_margin="@dimen/fab_margin" android:layout_gravity="bottom|end" app:backgroundTint="?attr/colorPrimaryLightTheme" - app:srcCompat="@drawable/ic_add_bottom_app_bar_24dp" + app:srcCompat="@drawable/ic_add_day_night_24dp" app:tint="@android:color/white" /> </androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/activity_multi_reddit_listing.xml b/app/src/main/res/layout/activity_multi_reddit_listing.xml index ea101e05..65285189 100644 --- a/app/src/main/res/layout/activity_multi_reddit_listing.xml +++ b/app/src/main/res/layout/activity_multi_reddit_listing.xml @@ -78,7 +78,7 @@ android:layout_margin="@dimen/fab_margin" android:layout_gravity="bottom|end" app:backgroundTint="?attr/colorPrimaryLightTheme" - app:srcCompat="@drawable/ic_add_bottom_app_bar_24dp" + app:srcCompat="@drawable/ic_add_day_night_24dp" app:tint="@android:color/white" /> </androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/activity_view_subreddit_detail.xml b/app/src/main/res/layout/activity_view_subreddit_detail.xml index 5f2c2294..3337fc67 100644 --- a/app/src/main/res/layout/activity_view_subreddit_detail.xml +++ b/app/src/main/res/layout/activity_view_subreddit_detail.xml @@ -201,7 +201,7 @@ android:layout_margin="@dimen/fab_margin" android:visibility="gone" app:backgroundTint="?attr/colorPrimaryLightTheme" - app:srcCompat="@drawable/ic_add_bottom_app_bar_24dp" + app:srcCompat="@drawable/ic_add_day_night_24dp" app:tint="@android:color/white" app:layout_anchor="@id/bottom_navigation_view_subreddit_detail_activity" /> diff --git a/app/src/main/res/layout/app_bar_main.xml b/app/src/main/res/layout/app_bar_main.xml index cc63287c..b1d9b330 100644 --- a/app/src/main/res/layout/app_bar_main.xml +++ b/app/src/main/res/layout/app_bar_main.xml @@ -132,7 +132,7 @@ android:layout_margin="@dimen/fab_margin" android:visibility="gone" app:backgroundTint="?attr/colorPrimaryLightTheme" - app:srcCompat="@drawable/ic_add_bottom_app_bar_24dp" + app:srcCompat="@drawable/ic_add_day_night_24dp" app:tint="@android:color/white" app:layout_anchor="@id/bottom_navigation_main_activity" /> diff --git a/app/src/main/res/layout/item_predefined_custom_theme.xml b/app/src/main/res/layout/item_predefined_custom_theme.xml index cbc6bb20..37dcdb0c 100644 --- a/app/src/main/res/layout/item_predefined_custom_theme.xml +++ b/app/src/main/res/layout/item_predefined_custom_theme.xml @@ -29,6 +29,6 @@ android:layout_height="24dp" android:layout_gravity="center_vertical" android:layout_marginStart="32dp" - android:src="@drawable/ic_add_24dp" /> + android:src="@drawable/ic_add_day_night_24dp" /> </LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/item_user_custom_theme.xml b/app/src/main/res/layout/item_user_custom_theme.xml index e4ea128d..55891961 100644 --- a/app/src/main/res/layout/item_user_custom_theme.xml +++ b/app/src/main/res/layout/item_user_custom_theme.xml @@ -29,7 +29,7 @@ android:layout_height="24dp" android:layout_gravity="center_vertical" android:layout_marginStart="32dp" - android:src="@drawable/ic_add_24dp" + android:src="@drawable/ic_add_day_night_24dp" android:background="?attr/selectableItemBackgroundBorderless" /> <ImageView |