admin
2022-03-31 02f1c9fd2c594323f772f8e8f0f2187a285c1749
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
<resources>
 
    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <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>
 
    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </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>
    
     <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="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>
 
</resources>