How To Use Own View In Layout?
I created a class like this public final class MyView extends View { public MyView(Context context, AttributeSet attrs) { super(context, attrs); [...] }
Solution 1:
You should write it like:
<view class="com.hitziger.barcode.MyView"...
Post a Comment for "How To Use Own View In Layout?"