|
|
@ -127,6 +127,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
|
|
|
private TextView tvFaviconsHint;
|
|
|
|
private TextView tvFaviconsHint;
|
|
|
|
private SwitchCompat swFaviconsPartial;
|
|
|
|
private SwitchCompat swFaviconsPartial;
|
|
|
|
private SwitchCompat swFaviconsManifest;
|
|
|
|
private SwitchCompat swFaviconsManifest;
|
|
|
|
|
|
|
|
private ImageButton ibFavicons;
|
|
|
|
private SwitchCompat swDdg;
|
|
|
|
private SwitchCompat swDdg;
|
|
|
|
private TextView tvDdgPrivacy;
|
|
|
|
private TextView tvDdgPrivacy;
|
|
|
|
private SwitchCompat swFaviconsDmarc;
|
|
|
|
private SwitchCompat swFaviconsDmarc;
|
|
|
@ -309,6 +310,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
|
|
|
tvFaviconsHint = view.findViewById(R.id.tvFaviconsHint);
|
|
|
|
tvFaviconsHint = view.findViewById(R.id.tvFaviconsHint);
|
|
|
|
swFaviconsPartial = view.findViewById(R.id.swFaviconsPartial);
|
|
|
|
swFaviconsPartial = view.findViewById(R.id.swFaviconsPartial);
|
|
|
|
swFaviconsManifest = view.findViewById(R.id.swFaviconsManifest);
|
|
|
|
swFaviconsManifest = view.findViewById(R.id.swFaviconsManifest);
|
|
|
|
|
|
|
|
ibFavicons = view.findViewById(R.id.ibFavicons);
|
|
|
|
swDdg = view.findViewById(R.id.swDdg);
|
|
|
|
swDdg = view.findViewById(R.id.swDdg);
|
|
|
|
tvDdgPrivacy = view.findViewById(R.id.tvDdgPrivacy);
|
|
|
|
tvDdgPrivacy = view.findViewById(R.id.tvDdgPrivacy);
|
|
|
|
swFaviconsDmarc = view.findViewById(R.id.swFaviconsDmarc);
|
|
|
|
swFaviconsDmarc = view.findViewById(R.id.swFaviconsDmarc);
|
|
|
@ -922,6 +924,13 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ibFavicons.setOnClickListener(new View.OnClickListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public void onClick(View view) {
|
|
|
|
|
|
|
|
Helper.viewFAQ(view.getContext(), 154);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
swDdg.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
swDdg.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
|
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
|
|