Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
BasicRenderScript / res / values /

styles.xml

       
        1
       
       
        <?xml version="1.0" encoding="utf-8"?>
       
       
        2
       
       
        <resources>
       
       
        3
       
       
       
       
        4
       
       
       
       
        5
       
       
        <style name="FullscreenTheme" parent="android:Theme.NoTitleBar">
       
       
        6
       
       
        <item name="android:windowContentOverlay">@null</item>
       
       
        7
       
       
        <item name="android:windowBackground">@null</item>
       
       
        8
       
       
        <item name="buttonBarStyle">@style/ButtonBar</item>
       
       
        9
       
       
        <item name="buttonBarButtonStyle">@style/ButtonBarButton</item>
       
       
        10
       
       
        </style>
       
       
        11
       
       
       
       
        12
       
       
        <style name="ButtonBar">
       
       
        13
       
       
        <item name="android:paddingLeft">2dp</item>
       
       
        14
       
       
        <item name="android:paddingTop">5dp</item>
       
       
        15
       
       
        <item name="android:paddingRight">2dp</item>
       
       
        16
       
       
        <item name="android:paddingBottom">0dp</item>
       
       
        17
       
       
        <item name="android:background">@android:drawable/bottom_bar</item>
       
       
        18
       
       
        </style>
       
       
        19
       
       
       
       
        20
       
       
        <style name="ButtonBarButton" />
       
       
        21
       
       
       
       
        22
       
       
        </resources>