I have a listview inside an AbsoluteLayout , and is not scrolling.
the XML is :
<ListView
android:id="@+id/listTrauma"
android:layout_width="fill_parent"
android:layout_height="178dp"
android:layout_x="0dp"
android:scrollbars="none"
android:layout_y="666dp" >
</ListView>
and the adapter code:
adapter = new ArrayAdapter<String>(getApplicationContext(),
R.layout.test1, dataTrauma);