diff options
author | Allan Wang <me@allanwang.ca> | 2018-01-01 23:22:51 -0500 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2018-01-01 23:22:51 -0500 |
commit | 71f5dc2f7ce5b8183421586e6a77be65040a4dff (patch) | |
tree | fedd18e271463ce2430637a9913e8470e84181ce /core/src/main/res/values | |
parent | f94d6f9694973c2a323e565794d948002593df0a (diff) | |
download | kau-71f5dc2f7ce5b8183421586e6a77be65040a4dff.tar.gz kau-71f5dc2f7ce5b8183421586e6a77be65040a4dff.tar.bz2 kau-71f5dc2f7ce5b8183421586e6a77be65040a4dff.zip |
Format everything and use reified generics
Diffstat (limited to 'core/src/main/res/values')
-rw-r--r-- | core/src/main/res/values/attr.xml | 12 | ||||
-rw-r--r-- | core/src/main/res/values/ids.xml | 36 |
2 files changed, 24 insertions, 24 deletions
diff --git a/core/src/main/res/values/attr.xml b/core/src/main/res/values/attr.xml index f02c219..b100e6d 100644 --- a/core/src/main/res/values/attr.xml +++ b/core/src/main/res/values/attr.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="ResourceName"> <declare-styleable name="MeasureSpecDelegate"> - <attr format="float" name="relativeWidth"/> - <attr format="float" name="relativeWidthToParent"/> - <attr format="float" name="postRelativeWidth"/> - <attr format="float" name="relativeHeight"/> - <attr format="float" name="relativeHeightToParent"/> - <attr format="float" name="postRelativeHeight"/> + <attr format="float" name="relativeWidth" /> + <attr format="float" name="relativeWidthToParent" /> + <attr format="float" name="postRelativeWidth" /> + <attr format="float" name="relativeHeight" /> + <attr format="float" name="relativeHeightToParent" /> + <attr format="float" name="postRelativeHeight" /> </declare-styleable> </resources> diff --git a/core/src/main/res/values/ids.xml b/core/src/main/res/values/ids.xml index 28ff9d9..48fe66f 100644 --- a/core/src/main/res/values/ids.xml +++ b/core/src/main/res/values/ids.xml @@ -1,22 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <resources> - <item name="kau_item_about_main" type="id"/> - <item name="kau_item_account" type="id"/> - <item name="kau_item_card" type="id"/> - <item name="kau_item_cutout" type="id"/> - <item name="kau_item_header_big_margin_top" type="id"/> - <item name="kau_item_library" type="id"/> - <item name="kau_item_faq" type="id"/> + <item name="kau_item_about_main" type="id" /> + <item name="kau_item_account" type="id" /> + <item name="kau_item_card" type="id" /> + <item name="kau_item_cutout" type="id" /> + <item name="kau_item_header_big_margin_top" type="id" /> + <item name="kau_item_library" type="id" /> + <item name="kau_item_faq" type="id" /> - <item name="kau_item_pref_checkbox" type="id"/> - <item name="kau_item_pref_color_picker" type="id"/> - <item name="kau_item_pref_header" type="id"/> - <item name="kau_item_pref_plain_text" type="id"/> - <item name="kau_item_pref_seekbar" type="id"/> - <item name="kau_item_pref_sub_item" type="id"/> - <item name="kau_item_pref_time_picker" type="id"/> - <item name="kau_item_pref_text" type="id"/> - <item name="kau_item_search" type="id"/> - <item name="kau_pref_inner_content" type="id"/> - <item name="kau_pref_lower_content" type="id"/> + <item name="kau_item_pref_checkbox" type="id" /> + <item name="kau_item_pref_color_picker" type="id" /> + <item name="kau_item_pref_header" type="id" /> + <item name="kau_item_pref_plain_text" type="id" /> + <item name="kau_item_pref_seekbar" type="id" /> + <item name="kau_item_pref_sub_item" type="id" /> + <item name="kau_item_pref_time_picker" type="id" /> + <item name="kau_item_pref_text" type="id" /> + <item name="kau_item_search" type="id" /> + <item name="kau_pref_inner_content" type="id" /> + <item name="kau_pref_lower_content" type="id" /> </resources> |