diff options
author | Scott Main <smain@google.com> | 2010-05-05 08:58:09 -0700 |
---|---|---|
committer | Scott Main <smain@google.com> | 2010-05-05 08:58:09 -0700 |
commit | a69e10db2fb58deb5e27aa67c46d267af928374b (patch) | |
tree | c2dd80948d6d1c4ab21ffae2dbe4c90d8fe8e22c /docs | |
parent | 65b2561c3bd74b639df0fead2041c775b7f40000 (diff) | |
download | frameworks_base-a69e10db2fb58deb5e27aa67c46d267af928374b.zip frameworks_base-a69e10db2fb58deb5e27aa67c46d267af928374b.tar.gz frameworks_base-a69e10db2fb58deb5e27aa67c46d267af928374b.tar.bz2 |
fix doc bug in hello gallery tutorial
Change-Id: I05ff14f7b15a8fd338dec8004912845eebe94347
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/resources/tutorials/views/hello-gallery.jd | 4 |
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 12d5a91..00757f5 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(); } |