在Java中创建Lottie Alert对话框可以通过以下步骤实现:
implementation 'com.airbnb.android:lottie:3.7.0'
import android.app.AlertDialog;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import com.airbnb.lottie.LottieAnimationView;
public class LottieAlertDialog {
private Context context;
private AlertDialog alertDialog;
private LottieAnimationView animationView;
private ImageView closeIcon;
public LottieAlertDialog(Context context) {
this.context = context;
initDialog();
}
private void initDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(context);
LayoutInflater inflater = LayoutInflater.from(context);
View dialogView = inflater.inflate(R.layout.dialog_lottie_alert, null);
animationView = dialogView.findViewById(R.id.animation_view);
closeIcon = dialogView.findViewById(R.id.close_icon);
builder.setView(dialogView);
alertDialog = builder.create();
alertDialog.setCancelable(false);
alertDialog.setCanceledOnTouchOutside(false);
closeIcon.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dismiss();
}
});
}
public void setAnimation(String animationFile) {
animationView.setAnimation(animationFile);
}
public void show() {
alertDialog.show();
animationView.playAnimation();
}
public void dismiss() {
alertDialog.dismiss();
animationView.cancelAnimation();
}
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="16dp"
app:lottie_autoPlay="false"
app:lottie_loop="true"
app:lottie_rawRes="@raw/your_animation_file" />
<ImageView
android:id="@+id/close_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/ic_close" />
</LinearLayout>
LottieAlertDialog lottieAlertDialog = new LottieAlertDialog(this);
lottieAlertDialog.setAnimation("your_animation_file.json");
lottieAlertDialog.show();
在上述代码中,你需要将"your_animation_file.json"替换为你自己的Lottie动画文件。你可以使用Lottie官方提供的在线动画库(https://lottiefiles.com/)或者自己创建Lottie动画文件。
这样,你就可以在Java中创建一个Lottie Alert对话框了。这个对话框可以显示一个Lottie动画,并且可以通过调用dismiss()
方法来关闭对话框。
领取专属 10元无门槛券
手把手带您无忧上云