Fix text color in SetAsWallpaperBottomSheet.

This commit is contained in:
Alex Ning 2020-06-17 11:59:09 +08:00
parent 72f176201e
commit ab14405b77
5 changed files with 5 additions and 7 deletions

View File

@ -99,8 +99,6 @@ public class ViewImageOrGifActivity extends AppCompatActivity implements SetAsWa
((Infinity) getApplication()).getAppComponent().inject(this);
getTheme().applyStyle(R.style.Theme_Normal, true);
getTheme().applyStyle(FontStyle.valueOf(mSharedPreferences
.getString(SharedPreferencesUtils.FONT_SIZE_KEY, FontStyle.Normal.name())).getResId(), true);

View File

@ -89,8 +89,6 @@ public class ViewImgurMediaActivity extends AppCompatActivity implements SetAsWa
((Infinity) getApplication()).getAppComponent().inject(this);
getTheme().applyStyle(R.style.Theme_Normal, true);
getTheme().applyStyle(FontStyle.valueOf(sharedPreferences
.getString(SharedPreferencesUtils.FONT_SIZE_KEY, FontStyle.Normal.name())).getResId(), true);

View File

@ -20,7 +20,7 @@
android:paddingStart="32dp"
android:paddingEnd="32dp"
android:text="@string/set_to_home_screen"
android:textColor="?attr/primaryTextColor"
android:textColor="@color/primaryTextColor"
android:textSize="?attr/font_default"
android:fontFamily="?attr/font_family"
android:drawableStart="@drawable/ic_wallpaper_home_screen_black_24dp"
@ -40,7 +40,7 @@
android:paddingStart="32dp"
android:paddingEnd="32dp"
android:text="@string/set_to_lock_screen"
android:textColor="?attr/primaryTextColor"
android:textColor="@color/primaryTextColor"
android:textSize="?attr/font_default"
android:fontFamily="?attr/font_family"
android:drawableStart="@drawable/ic_wallpaper_lock_screen_black_24dp"
@ -60,7 +60,7 @@
android:paddingStart="32dp"
android:paddingEnd="32dp"
android:text="@string/set_to_both"
android:textColor="?attr/primaryTextColor"
android:textColor="@color/primaryTextColor"
android:textSize="?attr/font_default"
android:fontFamily="?attr/font_family"
android:drawableStart="@drawable/ic_wallpaper_both_black_24dp"

View File

@ -8,4 +8,5 @@
<color name="backgroundColor">#121212</color>
<color name="playButtonBackgroundColor">#FFFFFF</color>
<color name="roundedBottomSheetPrimaryBackground">#242424</color>
<color name="primaryTextColor">#FFFFFF</color>
</resources>

View File

@ -9,4 +9,5 @@
<color name="playButtonBackgroundColor">#000000</color>
<color name="roundedBottomSheetPrimaryBackground">#FFFFFF</color>
<color name="roundedBottomSheetPrimaryNavigationBarColor">#000000</color>
<color name="primaryTextColor">#000000</color>
</resources>