> "Application error:<package name>" > "An error has occured in <package name>.Binary xml file line #xxx: > Error inflating class accelerateInterpolator."
You didn't provide us with the XML for your ListActivity layout. Since the error message refers to "inflating", the problem likely is in the layout XML file. One possibility is that you are trying to use <AccelerateInterpolator> as an element. This only works for classes in the android.widget package, AFAIK, and AccelerateInterpolator is in android.view.animation. If that is the case, try changing your element to <android.view.animation.AccelerateInterpolator> and see if that helps any. If that does not help, post your layout XML, and perhaps we can help further. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ -- Available Now! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

