I have trying to create a list with items. I do not want the list will fill the whole screen. I really tries to create a list its width and height will be nearly equal size of the longest list item and number of items on the list respectively. In other words;
if I have one item, on android I will see
------------------------
| |
| 1 |
------------------------
If I have 2 items
------------------------
| |
| 1 |
| 2 |
------------------------
If I have item with name "lll" and "llllllllll",
------------------------
| |
| lll |
| llllllllll |
------------------------
My layout is
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp" >
</TextView>
What part should I change in order to get what I have told at above ?
EDIT:
String[] values = new String[] { "1", "2", "3","4","5","6","7","8","9","10","11","12","13","14" };
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_expandable_list_item_1, values);
setListAdapter(adapter);