summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Scott Main <smain@google.com> 2010-05-05 09:27:50 -0700
committer Android Git Automerger <android-git-automerger@android.com> 2010-05-05 09:27:50 -0700
commit9aa12f85bef352bbc528fbee2ccd7350a2f30394 (patch)
treeb8cef66779bc147c81c64605bd440f7644318ee1
parent3445dae3f52fa8421e3b93496ac93c5753a43bd2 (diff)
parenta69e10db2fb58deb5e27aa67c46d267af928374b (diff)
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
-rw-r--r--docs/html/resources/tutorials/views/hello-gallery.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/resources/tutorials/views/hello-gallery.jd b/docs/html/resources/tutorials/views/hello-gallery.jd
index 12d5a91eb371..00757f5033de 100644
--- a/docs/html/resources/tutorials/views/hello-gallery.jd
+++ b/docs/html/resources/tutorials/views/hello-gallery.jd
@@ -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();
}