diff options
author | Jorim Jaggi <jjaggi@google.com> | 2016-05-24 00:30:00 -0700 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2016-06-02 19:09:51 -0700 |
commit | 7d98c8fca6d1edd51178a65847687d81562d7d6e (patch) | |
tree | cc8136cfcfb660fb73c026faf9bd1b514fa984fc /res/values-sw720dp | |
parent | b30b95f9db068faf294e43fb7927d911ecfaf892 (diff) | |
download | android_packages_wallpapers_LivePicker-7d98c8fca6d1edd51178a65847687d81562d7d6e.tar.gz android_packages_wallpapers_LivePicker-7d98c8fca6d1edd51178a65847687d81562d7d6e.tar.bz2 android_packages_wallpapers_LivePicker-7d98c8fca6d1edd51178a65847687d81562d7d6e.zip |
Adjust wallpaper picker to match static wallpaper picker
- Implement new action bar
- Use BottomSheet behavior from design lib
- Fill in values from live wallpaper if desired
- Don't use separate dialog for loading state
Bug: 28770685
Change-Id: I8dd862fe4c83f702e249f7f3644df89fee771f4f
Diffstat (limited to 'res/values-sw720dp')
-rw-r--r-- | res/values-sw720dp/dimes.xml | 27 | ||||
-rw-r--r-- | res/values-sw720dp/styles.xml | 21 |
2 files changed, 48 insertions, 0 deletions
diff --git a/res/values-sw720dp/dimes.xml b/res/values-sw720dp/dimes.xml new file mode 100644 index 0000000..54380b9 --- /dev/null +++ b/res/values-sw720dp/dimes.xml @@ -0,0 +1,27 @@ +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<resources> + + <!-- Dimensions for the preview fragment. --> + <dimen name="preview_toolbar_up_button_padding">8dp</dimen> + <dimen name="preview_toolbar_set_wallpaper_button_padding">20dp</dimen> + + <!-- Dimensions for the preview attribution pane. --> + <dimen name="preview_attribution_pane_content_side_margin">24dp</dimen> + <dimen name="preview_attribution_pane_explore_left_margin">10dp</dimen> + +</resources>
\ No newline at end of file diff --git a/res/values-sw720dp/styles.xml b/res/values-sw720dp/styles.xml new file mode 100644 index 0000000..7e1209c --- /dev/null +++ b/res/values-sw720dp/styles.xml @@ -0,0 +1,21 @@ +<!-- + ~ Copyright (C) 2016 The Android Open Source Project + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License + --> + +<resources> + + <style name="AttributionPaneTitle" parent="@android:style/TextAppearance.Material.Headline"/> + +</resources>
\ No newline at end of file |