This commit is contained in:
jinyuer
2021-02-01 16:02:15 +08:00
parent 40af0a3aa4
commit 3642d5ade3
12 changed files with 168 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
package my_view;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.view.View;
import android.widget.TextView;
@@ -65,7 +66,6 @@ public class CommentDialog extends HorizontalAttachPopupView {
@Override
protected void onCreate() {
super.onCreate();
}
public void setShowBug(boolean type) {
@@ -91,6 +91,11 @@ public class CommentDialog extends HorizontalAttachPopupView {
}
}
@Override
protected Drawable getPopupBackground() {
return getResources().getDrawable(R.drawable.round_blank);
}
public void setOnCommentOperateListener(OnCommentOperateListener li) {
listener = li;
}