diff options
| author | 2011-02-07 10:46:26 -0800 | |
|---|---|---|
| committer | 2011-02-07 10:46:26 -0800 | |
| commit | 9832945a99f1760bb75b33bf9fd70f53cc2b7cca (patch) | |
| tree | e5d2d1e77601f4193798a9d5d1996ea8dbf3964a | |
| parent | 1ee31175eca2fb5d6a95cb1aa4a9dbf66a5212cb (diff) | |
| parent | 76324fcabecc1bd6977b3f6242efe65e60688319 (diff) | |
Merge "Fix warnings"
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/tablet/PanelBackgroundView.java | 15 |
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(); |