admin
2020-07-14 7af22bf20c862c8ab2270cfeef8f3530f174ac9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yeshi.ec.rebate.myapplication.util;
 
import android.content.Context;
import android.support.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);
    }
}