1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.mylhyl.circledialog.view.listener;
|
| import android.widget.TextView;
|
| import com.airbnb.lottie.LottieAnimationView;
|
| /**
| * Created by hupei on 2018/7/4.
| */
|
| public interface OnCreateLottieListener {
| void onCreateLottieView(LottieAnimationView lottieAnimationView, TextView textView);
| }
|
|