FairEmail/app/src/main/java/eu/faircode/email/FragmentReview.java

75 lines
2.7 KiB
Java
Raw Normal View History

2019-09-21 20:18:24 +00:00
package eu.faircode.email;
import android.app.Dialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.lifecycle.Observer;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import java.util.List;
import static android.app.Activity.RESULT_OK;
public class FragmentReview extends FragmentDialogBase {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
2020-10-30 09:36:16 +00:00
View dview = LayoutInflater.from(getContext()).inflate(R.layout.dialog_review_account, null);
2019-09-21 20:18:24 +00:00
TextView tvLeft = dview.findViewById(R.id.tvLeft);
TextView tvRight = dview.findViewById(R.id.tvRight);
Button btnAccount = dview.findViewById(R.id.btnAccount);
tvLeft.setText("");
tvRight.setText("");
Bundle args = getArguments();
final long account = args.getLong("account");
btnAccount.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2020-10-30 09:36:16 +00:00
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(getContext());
2019-09-21 20:18:24 +00:00
lbm.sendBroadcast(
new Intent(ActivitySetup.ACTION_EDIT_ACCOUNT)
.putExtra("id", account)
2019-11-23 12:48:59 +00:00
.putExtra("protocol", EntityAccount.TYPE_IMAP));
2019-09-21 20:18:24 +00:00
dismiss();
}
});
2020-10-30 09:36:16 +00:00
DB db = DB.getInstance(getContext());
2019-09-21 20:18:24 +00:00
db.account().liveAccountSwipes(account).observe(this, new Observer<List<TupleAccountSwipes>>() {
@Override
public void onChanged(List<TupleAccountSwipes> swipes) {
if (swipes != null && swipes.size() == 1) {
String left = swipes.get(0).left_name;
String right = swipes.get(0).right_name;
tvLeft.setText(left == null ? "-" : left);
tvRight.setText(right == null ? "-" : right);
} else {
tvLeft.setText("?");
tvRight.setText("?");
}
}
});
2020-10-30 09:36:16 +00:00
return new AlertDialog.Builder(getContext())
2019-09-21 20:18:24 +00:00
.setView(dview)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
sendResult(RESULT_OK);
}
})
.create();
}
}