Welcome to mirror list, hosted at ThFree Co, Russian Federation.

styles.xml « values « res « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0be8ea170e0952e28d70150a8f86bf2f86a07dd3 (plain)
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>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.

    -->

    <!--
            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="AppBaseTheme" parent="android:Theme.Light"></style> -->
    <!-- <style name="AppBaseTheme" parent="@style/android:Theme.Material"></style> -->

    <style name="Divider">
	    <item name="android:layout_width">match_parent</item>
	    <item name="android:layout_height">1dp</item>
	    <item name="android:background">?android:attr/listDivider</item>
	</style>

    <!--
    <style name="Theme.Transparent" parent="@style/Theme.Sherlock">
		<item name="android:windowIsTranslucent">true</item>
		<item name="android:windowBackground">@android:color/transparent</item>
		<item name="android:windowContentOverlay">@null</item>
		<item name="android:windowNoTitle">true</item>
		<item name="android:windowIsFloating">true</item>
		<item name="android:backgroundDimEnabled">false</item>
  	</style>
  	-->



    <!--
    <style name="LoginFormContainer">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:padding">16dp</item>
    </style>
	-->

	<!--
	<style name="RobotoFontStyle">
        <item name="typeface">robotoslab_regular</item> -->
        <!-- https://github.com/johnkil/Android-RobotoTextView#usage --> <!--
    </style>

	<style name="RobotoFontStyleBold">
        <item name="typeface">robotoslab_bold</item>
    </style>
	-->

    <style name="DirectoryChooserTheme" parent="AppTheme" >
        <item name="android:background">@color/news_detail_background_color_dark_theme</item>
    </style>
    <style name="DirectoryChooserTheme_Light" parent="AppThemeLight" >
        <item name="android:background">@color/news_detail_background_color_light_theme</item>
    </style>

    <style name="FloatingDialog" parent="AppTheme" >
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowCloseOnTouchOutside">true</item>
    </style>
    <style name="FloatingDialogLight" parent="AppThemeLight" >
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowCloseOnTouchOutside">true</item>
    </style>

</resources>