SimpleCursorAdapter সেটআপ করুন যা ListView এ সার্চের রেজাল্টকে বেধে রাখে। ListView অবজেক্ট যা কনট্যাক্টস প্রদর্শন করে তা পেতে, Fragment এর প্যারেন্ট একটিভিটি ব্যবহার করে আপনার Activity.findViewById() কল করা প্রয়োজন। প্যারেন্ট একটিভিটির Context ব্যবহার করুন যখন আপনি setAdapter()কল করবেন। উদাহরনস্বরূপ:
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
...
// Gets the ListView from the View list of the parent activity
mContactsList = (ListView) getActivity().findViewById(R.layout.contact_list_view);
// Gets a CursorAdapter
mCursorAdapter = new SimpleCursorAdapter(
getActivity(),
R.layout.contact_list_item,
null,
FROM_COLUMNS, TO_IDS,
0);
// Sets the adapter for the ListView
mContactsList.setAdapter(mCursorAdapter);
}