I’ve had trouble using developer.android.com as a reference. Is it incomplete, or do I just need some advice on how to use it, or is there a better reference?
for example: for the “TextView.BufferType” method, I can’t find out on developer.android.com what are the possible variables. I know of “EDITABLE”, but what are the others? The android.com reference to TextViewBufferType gives no clues.
EDITABLE,NORMAL, andSPANNABLE. They seemed to have nuked the “Enum Values” section in all HTML documentation in the 3.0 release. They still exist in Google’s cached copy, though (as of 2/25/2011): http://webcache.googleusercontent.com/search?q=cache:http://developer.android.com/reference/android/widget/TextView.BufferType.htmlYou can also still see the available values in Eclipse’s autocomplete, and obviously they’re there if you check out the actual AOSP source code (highly recommended). Why they removed useful web documentation on enums is beyond me, though.