Changes

Jump to: navigation, search
no edit summary
3.1. Inside the <code>ContractList</code> class create a String array:
<pre>
protected String[] myContacts studentList = { "Anastasia Semionova", "Minoo Ziaei",
"Ladan Zadeh", "Sergiu Ecob" };
</pre>
3.2.Populate the listView on the main screen: <pre> ListAdapter adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, studentList); ListView contactsList = (ListView) findViewById(R.id.listView1); contactsList.setAdapter(adapter); </pre>
1
edit

Navigation menu