修改中英文

This commit is contained in:
18401019693 2023-10-09 17:41:55 +08:00
parent 26a4db55ed
commit 74ec0a8713
2 changed files with 29 additions and 1 deletions

View File

@ -1,7 +1,29 @@
package com.shayu.onetoone.dialog;
import android.content.Context;
import androidx.annotation.NonNull;
import com.lxj.xpopup.core.CenterPopupView;
import com.shayu.onetoone.R;
/**
* 首次匹配成功
*/
class MatchSuccessfullyPopup {
public class MatchSuccessfullyPopup extends CenterPopupView {
public MatchSuccessfullyPopup(@NonNull Context context) {
super(context);
}
// 返回自定义弹窗的布局
@Override
protected int getImplLayoutId() {
return R.layout.match_successfully_popup;
}
// 执行初始化操作比如findView设置点击或者任何你弹窗内的业务逻辑
@Override
protected void onCreate() {
super.onCreate();
}
}

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="256dp"
android:layout_height="match_parent">
</androidx.constraintlayout.widget.ConstraintLayout>