summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/fragments/AlwaysOnDialog.java
blob: cb26e6853d0f3a44fed26c17473afb427707cd5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package se.leap.bitmaskclient.fragments;

import android.app.Dialog;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatDialogFragment;
import androidx.appcompat.widget.AppCompatTextView;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.CheckBox;

import butterknife.ButterKnife;
import butterknife.InjectView;
import se.leap.bitmaskclient.R;
import se.leap.bitmaskclient.views.IconTextView;

import static se.leap.bitmaskclient.utils.PreferenceHelper.saveShowAlwaysOnDialog;


/**
 * Created by cyberta on 25.02.18.
 */



public class AlwaysOnDialog extends AppCompatDialogFragment {

    public final static String TAG = AlwaysOnDialog.class.getName();

    @InjectView(R.id.do_not_show_again)
    CheckBox doNotShowAgainCheckBox;

    @InjectView(R.id.user_message)
    IconTextView userMessage;

    @InjectView(R.id.block_vpn_user_message)
    AppCompatTextView blockVpnUserMessage;


    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    @NonNull
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
        LayoutInflater inflater = getActivity().getLayoutInflater();
        View view = inflater.inflate(R.layout.d_checkbox_confirm, null);
        ButterKnife.inject(this, view);

        userMessage.setIcon(R.drawable.ic_settings);
        userMessage.setText(getString(R.string.always_on_vpn_user_message));

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            blockVpnUserMessage.setVisibility(View.VISIBLE);
        }

        builder.setView(view)
                .setPositiveButton(android.R.string.ok, (dialog, id) -> {
                    if (doNotShowAgainCheckBox.isChecked()) {
                        saveShowAlwaysOnDialog(getContext(), false);
                    }
                    Intent intent = new Intent("android.net.vpn.SETTINGS");
                    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    startActivity(intent);
                })
                .setNegativeButton(R.string.cancel, (dialog, id) -> dialog.cancel());
        return builder.create();
    }
}