Skip to content Skip to sidebar Skip to footer

Robolectric Issue With Progressbar

I keep getting a RuntimeException from Robolectric when it tries to invoke an onCreate for an activity that has a ProgressBar. I've localized the issue to this block in the layout

Solution 1:

change

android:id="@+android:id/progress_large"

to

android:id="@+id/progress_large"


Post a Comment for "Robolectric Issue With Progressbar"