I want to show these itens at my ListView
Google Bing
You can do this with an ArrayAdapter and have it use either an Array or a List to give it data
lv.setAdatper(new ArrayAdapter(context, R.layout.some_layout_to_use, R.id.some_textview_in_layout, listData);