Merge remote-tracking branch 'origin/dev_6.5.5_语聊' into dev_6.5.5_语聊

This commit is contained in:
zlzw 2023-10-09 18:31:28 +08:00
commit 2bdc95b3b5
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +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;
/**
* 首次匹配成功
*/
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>