diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-02-27 05:15:32 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-02-27 05:15:32 +0000 |
commit | fb525d62ed630c9731a4704ad3b9848b0fc10752 (patch) | |
tree | 28e0722e20850218351695854e83d6d65d2cd561 /app/src/main/res/values-land-v28 | |
parent | acc08489fa9df2519608dbfaa08b18a33b93c9d8 (diff) | |
download | infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.tar infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.tar.gz infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.tar.bz2 infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.tar.lz infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.tar.xz infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.tar.zst infinity-for-reddit-fb525d62ed630c9731a4704ad3b9848b0fc10752.zip |
Don't draw under display cutouts in landscape mode (API >= 28).
Diffstat (limited to 'app/src/main/res/values-land-v28')
-rw-r--r-- | app/src/main/res/values-land-v28/styles.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/src/main/res/values-land-v28/styles.xml b/app/src/main/res/values-land-v28/styles.xml new file mode 100644 index 00000000..752c9c87 --- /dev/null +++ b/app/src/main/res/values-land-v28/styles.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <style name="AppTheme" parent="Theme.MaterialComponents.Light"> + <!-- Customize your theme here. --> + <item name="colorPrimary">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> + <item name="colorAccent">@color/colorAccent</item> + <item name="android:windowLayoutInDisplayCutoutMode">never</item> + <item name="android:navigationBarColor">@android:color/black</item> + <item name="android:textColorPrimary">@android:color/white</item> + </style> +</resources>
\ No newline at end of file |