i am currently using an string array in which i have to put icons for the items in navigation drawer.Here is my code
<string-array name="drawer_titles">
<item >About Us</item>
<item>FeedBack</item>
<item>Setting</item>
<item>Share App</item>
<item>Rate Us</item>
<item>Logout</item>
how can i add list icons to the adapter which contains list items
image=(ImageView) findViewById(R.id.image) ;
t1=(TextView) findViewById(R.id.t1) ;
t2=(TextView) findViewById(R.id.t2) ;
mDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.drawer_list_item, mDrawerItmes));