| | |
| | | <resources xmlns:tools="http://schemas.android.com/tools"> |
| | | <!-- Base application theme. --> |
| | | <style name="Theme.Zhangshi_app_android" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> |
| | | <style name="Theme.Zhangshi_app_android" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge"> |
| | | <!-- Primary brand color. --> |
| | | <item name="colorPrimary">@color/purple_500</item> |
| | | <item name="colorPrimaryVariant">@color/purple_700</item> |
| | |
| | | <item name="android:statusBarColor">?attr/colorPrimaryVariant</item> |
| | | <!-- Customize your theme here. --> |
| | | </style> |
| | | |
| | | <style name="Theme.app" parent="Theme.AppCompat.DayNight.NoActionBar"> |
| | | <!-- 窗口背景颜色 --> |
| | | <item name="android:windowBackground">@color/windowBackground</item> |
| | | <!-- 应用的主要色调,ActionBar Toolbar 默认使用该颜色 --> |
| | | <item name="colorPrimary">@color/colorPrimary</item> |
| | | <!-- 应用的主要暗色调,状态栏默认使用该颜色 --> |
| | | <item name="colorPrimaryDark">@color/colorPrimaryDark</item> |
| | | <!-- 应用的强调色,CheckBox RadioButton Switch 等一般控件的选中效果默认采用该颜色 --> |
| | | <item name="colorAccent">@color/colorAccent</item> |
| | | <!-- 默认文本颜色,Button、TextView 的文字颜色--> |
| | | <!-- <item name="android:textColor">@color/textColor</item>--> |
| | | <!-- 默认提示颜色,Button、TextView 的提示文字颜色 --> |
| | | <!-- <item name="android:textColorHint">@color/textColorHint</item>--> |
| | | <!-- ActionMode 覆盖 Actionbar 不被顶下来 --> |
| | | <item name="windowActionModeOverlay">true</item> |
| | | <item name="android:windowContentOverlay">@null</item> |
| | | <!-- ActionMode 的颜色 --> |
| | | <item name="actionModeBackground">@color/colorPrimary</item> |
| | | <!-- 解决 Android 5.1 及以上版本 Button 英文字符串自动变大写的问题 --> |
| | | <item name="android:textAllCaps">false</item> |
| | | <!-- 默认隐藏输入法,开启这个选项后会导致输入对话框在关闭之后不能关闭软键盘 --> |
| | | <!--<item name="android:windowSoftInputMode">stateHidden</item>--> |
| | | <!-- 关闭 RecyclerView ScrollView ViewPager 水波纹效果 --> |
| | | <item name="android:overScrollMode">never</item> |
| | | |
| | | </style> |
| | | </resources> |