version:1.1.5

update:
bugfixes:优化闹钟自动接听
This commit is contained in:
2024-08-19 10:30:50 +08:00
parent 9f8057cd33
commit 261016b9bd
103 changed files with 2478 additions and 781 deletions

View File

@@ -23,6 +23,7 @@ public class EditContactDialog extends AlertDialog {
private ConstraintLayout clEdit, clDelete, clCancel;
private String mPhoneNumber;
private boolean hideDelete = false;
private Context mContext;
@@ -31,6 +32,9 @@ public class EditContactDialog extends AlertDialog {
this.mContext = context;
}
public void setHideDelete(boolean hideDelete) {
this.hideDelete = hideDelete;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -89,6 +93,11 @@ public class EditContactDialog extends AlertDialog {
} else {
}
if (hideDelete) {
clDelete.setVisibility(View.GONE);
} else {
clDelete.setVisibility(View.VISIBLE);
}
}
@Override