diff options
| -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(); |