i see two listview xml code:
<ListView
android:id="@android:id/list"
...
and
<ListView
android:id="@+id/android:list"
whats different between those?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
@+id/testmeans you are creating an id named test in the namespace ofyour application. You can refer to it using
@id/test.@android:id/testmeans you are referring to an id defined in the android namespace.