Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26dfbb67 authored by Scott Main's avatar Scott Main Committed by Android Git Automerger
Browse files

am 9aa12f85: am a69e10db: fix doc bug in hello gallery tutorial

Merge commit '9aa12f85' into kraken

* commit '9aa12f85':
  fix doc bug in hello gallery tutorial
parents d9d009d7 9aa12f85
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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();
    }