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

113 lines
4.0 KiB
Java
Raw Normal View History

2021-07-31 18:13:58 +00:00
package eu.faircode.email;
/*
This file is part of FairEmail.
FairEmail is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FairEmail is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2023-01-01 07:52:55 +00:00
Copyright 2018-2023 by Marcel Bokhorst (M66B)
2021-07-31 18:13:58 +00:00
*/
import android.content.Intent;
import android.os.Bundle;
import android.text.method.LinkMovementMethod;
import android.view.View;
2021-09-25 14:29:47 +00:00
import android.widget.Button;
2021-07-31 18:13:58 +00:00
import android.widget.ImageButton;
import android.widget.TextView;
public class ActivityError extends ActivityBase {
static final int PI_ERROR = 1;
static final int PI_ALERT = 2;
2021-10-26 13:04:19 +00:00
private TextView tvTitle;
private TextView tvMessage;
private Button btnPassword;
private ImageButton ibSetting;
private ImageButton ibInfo;
2021-07-31 18:13:58 +00:00
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
2022-02-13 13:59:37 +00:00
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
2021-07-31 18:13:58 +00:00
getSupportActionBar().setSubtitle(getString(R.string.title_setup_error));
2021-10-26 13:04:19 +00:00
setContentView(R.layout.activity_error);
tvTitle = findViewById(R.id.tvTitle);
tvMessage = findViewById(R.id.tvMessage);
btnPassword = findViewById(R.id.btnPassword);
ibSetting = findViewById(R.id.ibSetting);
ibInfo = findViewById(R.id.ibInfo);
2021-07-31 18:13:58 +00:00
2021-10-26 13:04:19 +00:00
load();
}
2021-07-31 18:13:58 +00:00
2021-10-26 13:04:19 +00:00
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
setIntent(intent);
load();
}
2021-07-31 18:13:58 +00:00
2021-10-26 13:04:19 +00:00
private void load() {
2021-07-31 18:13:58 +00:00
Intent intent = getIntent();
String type = intent.getStringExtra("type");
String title = intent.getStringExtra("title");
String message = intent.getStringExtra("message");
2021-09-25 14:29:47 +00:00
String provider = intent.getStringExtra("provider");
2021-08-13 12:33:37 +00:00
long account = intent.getLongExtra("account", -1L);
2021-09-25 14:29:47 +00:00
int protocol = intent.getIntExtra("protocol", -1);
int auth_type = intent.getIntExtra("auth_type", -1);
2021-07-31 18:13:58 +00:00
int faq = intent.getIntExtra("faq", -1);
tvTitle.setText(title);
tvMessage.setMovementMethod(LinkMovementMethod.getInstance());
tvMessage.setText(message);
2022-09-08 07:03:30 +00:00
btnPassword.setVisibility(account < 0 ? View.GONE : View.VISIBLE);
2021-09-25 14:29:47 +00:00
btnPassword.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
2022-09-08 07:03:30 +00:00
startActivity(new Intent(ActivityError.this, ActivitySetup.class)
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK)
.putExtra("target", "accounts")
.putExtra("id", account)
.putExtra("protocol", protocol));
finish();
2021-09-25 14:29:47 +00:00
}
});
2021-08-13 12:33:37 +00:00
ibSetting.setVisibility(account < 0 ? View.GONE : View.VISIBLE);
ibSetting.setOnClickListener(new View.OnClickListener() {
@Override
2021-08-13 14:39:44 +00:00
public void onClick(View v) {
v.getContext().startActivity(new Intent(v.getContext(), ActivitySetup.class)
2021-09-27 16:57:39 +00:00
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK)
2021-09-25 14:29:47 +00:00
.putExtra("target", "accounts")
.putExtra("id", account)
.putExtra("protocol", protocol));
2021-08-13 12:33:37 +00:00
}
});
2021-07-31 18:13:58 +00:00
ibInfo.setVisibility(faq > 0 ? View.VISIBLE : View.GONE);
ibInfo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Helper.viewFAQ(view.getContext(), faq);
}
});
}
}