Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 69d12abb authored by Wanja Schulze's avatar Wanja Schulze Committed by Michael Bestas
Browse files

Gallery2: Fix black on black text

Change-Id: I41cc62bcea0210080ee1e231e1c4b9a9f62a93a0
parent b850b7db
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
    <color name="albumset_background">@color/default_background</color>

    <color name="details_text_color">@color/primary_text</color>
    <color name="empty_text">@color/primary_text</color>

    <color name="multiselect_action_text_color">@color/primary_text</color>
    <color name="multiselect_background">@color/primary</color>
+2 −0
Original line number Diff line number Diff line
@@ -93,6 +93,8 @@
    <color name="navigation_accent_enabled">@color/white</color>

    <color name="details_text_color">@color/black_transparent_4</color>
    <color name="empty_text">@color/black_transparent_4</color>

    <color name="multiselect_action_text_color">@color/black_transparent_4</color>
    <color name="multiselect_icon_color">@color/black</color>
</resources>
+1 −1
Original line number Diff line number Diff line
@@ -974,7 +974,7 @@ public class AlbumPage extends ActivityState implements GalleryActionBar.Cluster
        if (tvEmptyAlbum == null) {
            tvEmptyAlbum = new TextView(mActivity);
            tvEmptyAlbum.setText(R.string.tvEmptyVideos);
            tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000"));
            tvEmptyAlbum.setTextColor(mActivity.getResources().getColor(R.color.empty_text));
            tvEmptyAlbum.setGravity(Gravity.CENTER);
            tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
            RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ public class AlbumSetPage extends ActivityState implements
        if (tvEmptyAlbum == null) {
            tvEmptyAlbum = new TextView(mActivity);
            tvEmptyAlbum.setText(R.string.tvEmptyAlbum);
            tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000"));
            tvEmptyAlbum.setTextColor(mActivity.getResources().getColor(R.color.empty_text));
            tvEmptyAlbum.setGravity(Gravity.CENTER);
            tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
            tvEmptyAlbum.setId(R.id.empty_album);
+1 −1
Original line number Diff line number Diff line
@@ -878,7 +878,7 @@ public class TimeLinePage extends ActivityState implements
        if (tvEmptyAlbum == null) {
            tvEmptyAlbum = new TextView(mActivity);
            tvEmptyAlbum.setText(R.string.tvEmptyAlbum);
            tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000"));
            tvEmptyAlbum.setTextColor(mActivity.getResources().getColor(R.color.empty_text));
            tvEmptyAlbum.setGravity(Gravity.CENTER);
            tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
            RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(