| 12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <!--
- Because the window insets on round devices are larger than 15dp, this padding only applies
- to square screens.
- -->
- <dimen name="box_inset_layout_padding">0dp</dimen>
- <!--
- This padding applies to both square and round screens. The total padding between the buttons
- and the window insets is box_inset_layout_padding (above variable) on square screens and
- inner_frame_layout_padding (below variable) on round screens.
- -->
- <dimen name="inner_frame_layout_padding">5dp</dimen>
- <dimen name="activity_horizontal_margin">16dp</dimen>
- <dimen name="activity_vertical_margin">16dp</dimen>
- <!-- Used by CaptureActivity. -->
- <dimen name="standard_padding">8dip</dimen>
- <dimen name="half_padding">4dip</dimen>
- <dimen name="text_margin">16dp</dimen>
- <dimen name="padding_middle">12dp</dimen>
- </resources>
|