In my Android app, I add a ListView element (for example) to the main.xml layout file as follows:
<ListView android:id="@+id/myList">
Then I can access it from my MainActivity using:
final ListView resultList = (ListView) findViewById(R.id.myList);
But how can I access such a ListView if I use the following identifier in a layout file?
<ListView android:id="@android:id/list">
I want to access it from my MainActivity (which extends ListActivity).
Thanks in advance!
android android-layout android-listview android-xml
caw
source share