I have it in my main.xml
<com.adwhirl.AdWhirlLayout
android:id="@+id/timer_ads"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
And it always leads to
Binary string XML file # 117: bloat error on class com.adwhirl.AdWhirlLayout
and another interesting line reads:
Called: java.lang.NoSuchMethodException: AdWhirlLayout (context, attribute)
Does this mean that I cannot use AdWhirlLayout from xml?
source
share