Issue
Possible Duplicate:
what does the “@+android:id/title” mean?
For example: I have android:id/summary
and android:id/title
But I don't realize where are they stored (I need some more ids).
I need them to use in layout like here:
<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40px"/>
I need IDs of system resources (not to create my own).
Solution
The answer is [PATH TO ANDROID SDK]/platforms/android-[VERSION]/data/res/*.xml
Found here: https://stackoverflow.com/a/6354998/1548085
Answered By - janot
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.