am a69e10db: fix doc bug in hello gallery tutorial

Merge commit 'a69e10db2fb58deb5e27aa67c46d267af928374b' into froyo-plus-aosp

* commit 'a69e10db2fb58deb5e27aa67c46d267af928374b':
  fix doc bug in hello gallery tutorial
This commit is contained in:
Scott Main
2010-05-05 09:27:50 -07:00
committed by Android Git Automerger

View File

@@ -101,9 +101,9 @@ public class ImageAdapter extends BaseAdapter {
public ImageAdapter(Context c) {
mContext = c;
TypedArray a = obtainStyledAttributes(android.R.styleable.Theme);
TypedArray a = obtainStyledAttributes(R.styleable.HelloGallery);
mGalleryItemBackground = a.getResourceId(
android.R.styleable.Theme_galleryItemBackground, 0);
R.styleable.HelloGallery_android_galleryItemBackground, 0);
a.recycle();
}