From 5e79d05eee350eba5e675189a74e9b19ec4d74f2 Mon Sep 17 00:00:00 2001 From: moschutipong Date: Tue, 31 Oct 2017 10:26:50 +0700 Subject: [PATCH] first commit --- .../codepath/example/customadapterdemo/CustomListActivity.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/main/java/com/codepath/example/customadapterdemo/CustomListActivity.java b/app/src/main/java/com/codepath/example/customadapterdemo/CustomListActivity.java index 071f404..fdcc2fa 100644 --- a/app/src/main/java/com/codepath/example/customadapterdemo/CustomListActivity.java +++ b/app/src/main/java/com/codepath/example/customadapterdemo/CustomListActivity.java @@ -16,11 +16,8 @@ protected void onCreate(Bundle savedInstanceState) { } private void populateUsersList() { - // Construct the data source ArrayList arrayOfUsers = User.getUsers(); - // Create the adapter to convert the array to views CustomUsersAdapter adapter = new CustomUsersAdapter(this, arrayOfUsers); - // Attach the adapter to a ListView ListView listView = (ListView) findViewById(R.id.lvUsers); listView.setAdapter(adapter); }