version:1.9.1
fix: update:个人信息页面完善
This commit is contained in:
@@ -10,9 +10,8 @@
|
||||
<color name="black">#000000</color>
|
||||
<color name="gray">#f0f0f0</color>
|
||||
<color name="lightGray">#FFD3D3D3</color>
|
||||
<color name="tv_add_color">#4880ff</color>
|
||||
<color name="yellow">#F8B551</color>
|
||||
<color name="default_blue">#0480FF</color>
|
||||
<color name="default_blue">#4880ff</color>
|
||||
<color name="ok_button">#4D4B50</color>
|
||||
<color name="red">#FF0000</color>
|
||||
<color name="actions_item_pressed">#424144</color>
|
||||
@@ -41,4 +40,8 @@
|
||||
<color name="text_hint_color">#646464</color>
|
||||
<color name="contact_text_color">#98999a</color>
|
||||
|
||||
<color name="user_background_color">#ddecff</color>
|
||||
|
||||
<color name="default_radio_color">#EFEFEF</color>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
<string name="hello_blank_fragment">Hello blank fragment</string>
|
||||
<string name="tips">努力不为感动谁,只为不与最好的自己失之交臂。趁着最美好的年华,继续奋斗吧。</string>
|
||||
<string name="app_size">%d款应用</string>
|
||||
<string name="today_study_time">今日学习时间%s</string>
|
||||
<string name="today_study_time">学习时长%s</string>
|
||||
<string name="unknown">未设置</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -62,6 +62,27 @@
|
||||
<item name="android:windowCloseOnTouchOutside">false</item>
|
||||
</style>
|
||||
|
||||
<style name="activity_styles_full" parent="Theme.AppCompat.Light.Dialog">
|
||||
<item name="android:windowFullscreen">true</item>
|
||||
<!--设置dialog的背景-->
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
<!--设置Dialog的windowFrame框为无-->
|
||||
<item name="android:windowFrame">@null</item>
|
||||
<!--设置无标题-->
|
||||
<item name="windowNoTitle">true</item>
|
||||
<!--是否浮现在activity之上-->
|
||||
<!--为false会导致windowCloseOnTouchOutside 失效-->
|
||||
<item name="android:windowIsFloating">false</item>
|
||||
<!--是否半透明-->
|
||||
<item name="android:windowIsTranslucent">true</item>
|
||||
<!--设置窗口内容不覆盖-->
|
||||
<item name="android:windowContentOverlay">@null</item>
|
||||
<!--设置动画,在这里使用让它继承系统的Animation.Dialog-->
|
||||
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
|
||||
<!--背景是否模糊显示-->
|
||||
<item name="android:backgroundDimEnabled">true</item>
|
||||
</style>
|
||||
|
||||
<style name="CustomDialog" parent="Theme.AppCompat.Dialog.Alert">
|
||||
<!--背景颜色及和透明程度-->
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
@@ -75,4 +96,9 @@
|
||||
<item name="android:backgroundDimEnabled">true</item>
|
||||
</style>
|
||||
|
||||
<!-- CustomRadiotheme -->
|
||||
<style name="CustomRadioTheme" parent="@android:style/Widget.CompoundButton.RadioButton">
|
||||
<item name="android:button">@drawable/custom_radio_selector</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user