From a4bd840a81b173f174ea216b1f0b8f96b0f10131 Mon Sep 17 00:00:00 2001 From: Simon Jinyu Liu Date: Tue, 20 Jan 2015 20:21:50 +0800 Subject: [PATCH] Update README.md correct data adapter class name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f9c0a4c1..4a0c7295 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ public class MyAdapter extends BaseAdapter implements StickyListHeadersAdapter { private String[] countries; private LayoutInflater inflater; - public TestBaseAdapter(Context context) { + public MyAdapter(Context context) { inflater = LayoutInflater.from(context); countries = context.getResources().getStringArray(R.array.countries); }