admin
2021-05-15 2aead6275fdd1bbbd778abc0e85663a2578fab06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.tejia.lijin.app.util;
 
import android.content.Context;
import androidx.annotation.Nullable;
import android.util.AttributeSet;
import android.view.View;
 
public class CouponBgView extends View {
 
    public CouponBgView(Context context) {
        super(context);
    }
 
    public CouponBgView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }
 
    public CouponBgView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }
}