I can say I'm new for android application devolepment. I want to give a example to tell you my question.
I'm getting some datas from database I need to create a lot of textviews to put datas into. I think here is some php devoloper, too. When I use php I write something like below.
foreach($database_datas as $data)
{
echo "<li>" + $data["list_item"] + "</li>";
}
In android, can we embed? What's the method?