summaryrefslogtreecommitdiffstats
path: root/wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2013-12-11 17:09:53 +0100
committerDanesh M <daneshm90@gmail.com>2014-06-06 22:54:22 -0700
commitdb8e6203655330d8e7f67cd008130f713419c691 (patch)
treeba9870a984b2590ce44ba69f21ec78e9d4e8a2b9 /wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java
parentb1666a6b194f6ce6f49e002c5370344736033c98 (diff)
downloadandroid_packages_apps_Trebuchet-db8e6203655330d8e7f67cd008130f713419c691.tar.gz
android_packages_apps_Trebuchet-db8e6203655330d8e7f67cd008130f713419c691.tar.bz2
android_packages_apps_Trebuchet-db8e6203655330d8e7f67cd008130f713419c691.zip
Move additional wallpaper picker files to special dir
Change-Id: I3dd6f0ce4db72f9f30ed02e8c27039f68ab9a728
Diffstat (limited to 'wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java')
-rw-r--r--wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java b/wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java
new file mode 100644
index 000000000..ceaa043a7
--- /dev/null
+++ b/wallpaper_picker_src/com/android/launcher3/WallpaperRootView.java
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2013 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.
+ */
+
+package com.android.launcher3;
+
+import android.content.Context;
+import android.graphics.Rect;
+import android.util.AttributeSet;
+import android.widget.RelativeLayout;
+
+public class WallpaperRootView extends RelativeLayout {
+ private final WallpaperPickerActivity a;
+ public WallpaperRootView(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ a = (WallpaperPickerActivity) context;
+ }
+ public WallpaperRootView(Context context, AttributeSet attrs, int defStyle) {
+ super(context, attrs, defStyle);
+ a = (WallpaperPickerActivity) context;
+ }
+
+ protected boolean fitSystemWindows(Rect insets) {
+ a.setWallpaperStripYOffset(insets.bottom);
+ return true;
+ }
+}