amitait wrote: > Thank you! > > What is "private static final int" ? (Or, where can I read about it?)
You probably should pick up a book on Java (e.g., _Head First Java_), or read the Wikibook. private means the data member is only accessible from its class. static means the data member lives outside the scope of any of the classes' objects. final means the data member will not change value once initialized -- any code that attempts to modify it will fail with a compiler error. int is a standard Java integer, as a primitive (compared to Integer, representing the same sort of data as a first-class object). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Consulting: http://commonsware.com/consulting -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

