Merge branch 'master' of ssh://android-git:29418/platform/frameworks/base

This commit is contained in:
Justin Ho
2011-02-07 10:47:01 -08:00
committed by Android Git Automerger

View File

@@ -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.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;
import android.util.AttributeSet;
import android.view.View;
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();