admin
2022-01-20 d8ef9a783b9e0b2a495f02fdf3daaf27ef49e99d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr format="dimension" name="rightPadding"/>
    <color name="dim_foreground_dark">#bebebe</color>
    <color name="loading_color">#FF03DAC5</color>
    <color name="transparent">#00000000</color>
    <string name="app_name">LcjianLibrary</string>
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>
    <style name="Dialog" parent="android:style/Theme.Dialog">
        <item name="android:background">@android:color/transparent</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
    </style>
    <style name="SlidingDialogAnimation" parent="android:Animation">
        <item name="android:windowEnterAnimation">@anim/sliding_dialog_enter</item>
        <item name="android:windowExitAnimation">@anim/sliding_dialog_exit</item>
    </style>
    <style name="SlidingDialogTheme" parent="android:Theme">
        
    </style>
    <style name="Theme.Sliding.Dialog" parent="SlidingDialogTheme">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowAnimationStyle">@style/SlidingDialogAnimation</item>
        <item name="android:windowCloseOnTouchOutside">true</item>
    </style>
    <style name="dialogstyle" parent="android:Animation">
        <item name="@android:windowEnterAnimation">@anim/bottom_dialog_enter</item> 
        <item name="@android:windowExitAnimation">@anim/bottom_dialog_exit</item> 
    </style>
    <declare-styleable name="AdaptiveListView">
        <attr format="dimension|reference" name="maxHeight"/>
    </declare-styleable>
    <declare-styleable name="ArcMenu">
        <attr format="float|reference" name="fromDegrees"/>
        <attr format="float|reference" name="toDegrees"/>
        <attr format="dimension|reference" name="arcRadius"/>
        <attr format="integer|reference" name="duration"/>
        <attr format="boolean" name="closeOnClick"/>
        <attr format="reference" name="mainImage"/>
    </declare-styleable>
    <declare-styleable name="DashLine">
        <attr format="dimension|reference" name="dashWidth"/>
        <attr format="dimension|reference" name="dashGap"/>
        <attr format="color|reference" name="lineColor"/>
        <attr name="dashOrientation">
            <enum name="horizontal" value="0"/>
            <enum name="vertical" value="1"/>
        </attr>
    </declare-styleable>
    <declare-styleable name="Emotion">
        <attr format="dimension|reference" name="emotionSize"/>
        <attr format="dimension|reference" name="emotionHeight"/>
        <attr format="dimension|reference" name="emotionWidth"/>
    </declare-styleable>
    <declare-styleable name="RatioLayout">
        <attr format="float|reference" name="ratio"/>
    </declare-styleable>
    <declare-styleable name="ShelvesView">
        <attr format="reference" name="shelfBackground"/>
    </declare-styleable>
    <declare-styleable name="SlidingMenu">
        <attr name="rightPadding"/>
    </declare-styleable>
</resources>