lmw
2024-05-27 c00669a852702e1aa1326872bb916f9a079b57e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.future.driver.utils.EasePopup;
 
import android.content.Context;
import android.view.Gravity;
import android.view.View;
 
public class EasyPopup extends BasePopup<EasyPopup> {
 
    private OnViewListener mOnViewListener;
 
    public static EasyPopup create() {
        return new EasyPopup();
    }
 
    public static EasyPopup create(Context context) {
        return new EasyPopup(context);
    }
 
    public EasyPopup() {
 
    }
 
    public EasyPopup(Context context) {
        setContext(context);
    }
 
    @Override
    protected void initAttributes() {
 
    }
 
    @Override
    protected void initViews(View view) {
        if (mOnViewListener != null) {
            mOnViewListener.initViews(view);
        }
    }
 
    public EasyPopup setOnViewListener(OnViewListener listener) {
        this.mOnViewListener = listener;
        return this;
    }
 
    public interface OnViewListener {
 
        void initViews(View view);
    }
 
    public void showDown(View view){
        showAtLocation(view, Gravity.BOTTOM,0,0);
    }
 
    public void showCenter(View view){
        showAtLocation(view,Gravity.CENTER,0,0);
    }
}