summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andy Stadler <stadler@google.com> 2011-02-07 10:46:26 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2011-02-07 10:46:26 -0800
commit9832945a99f1760bb75b33bf9fd70f53cc2b7cca (patch)
treee5d2d1e77601f4193798a9d5d1996ea8dbf3964a
parent1ee31175eca2fb5d6a95cb1aa4a9dbf66a5212cb (diff)
parent76324fcabecc1bd6977b3f6242efe65e60688319 (diff)
Merge "Fix warnings"
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java15
1 files changed, 6 insertions, 9 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java
index 5eafdc1f118a..9ac933f3721a 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java
@@ -14,28 +14,25 @@
* limitations under the License.
*/
-package com.android.systemui.statusbar.phone;
+package com.android.systemui.statusbar.tablet;
import android.content.Context;
-import android.content.res.TypedArray;
+import android.graphics.Canvas;
import android.util.AttributeSet;
-import android.util.Slog;
import android.view.View;
-import android.graphics.BitmapFactory;
-import android.graphics.Bitmap;
-import android.graphics.Paint;
-import android.graphics.Canvas;
public class PanelBackgroundView extends View {
+ /*
private Bitmap mTexture;
private Paint mPaint;
private int mTextureWidth;
private int mTextureHeight;
-
+ */
+
public PanelBackgroundView(Context context, AttributeSet attrs) {
super(context, attrs);
/*
- mTexture = BitmapFactory.decodeResource(getResources(),
+ mTexture = BitmapFactory.decodeResource(getResources(),
com.android.internal.R.drawable.status_bar_background);
mTextureWidth = mTexture.getWidth();
mTextureHeight = mTexture.getHeight();