mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-11 19:43:11 +02:00
Moved blocked senders button to receive settings
This commit is contained in:
@@ -63,7 +63,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
private SwitchCompat swSuggestReceived;
|
||||
private SwitchCompat swSuggestFrequently;
|
||||
private Button btnLocalContacts;
|
||||
private Button btnBlockedSenders;
|
||||
private SwitchCompat swAutoIdentity;
|
||||
private SwitchCompat swSendChips;
|
||||
private SwitchCompat swSendReminders;
|
||||
@@ -142,7 +141,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
swSuggestReceived = view.findViewById(R.id.swSuggestReceived);
|
||||
swSuggestFrequently = view.findViewById(R.id.swSuggestFrequently);
|
||||
btnLocalContacts = view.findViewById(R.id.btnLocalContacts);
|
||||
btnBlockedSenders = view.findViewById(R.id.btnBlockedSenders);
|
||||
swAutoIdentity = view.findViewById(R.id.swAutoIdentity);
|
||||
swSendChips = view.findViewById(R.id.swSendChips);
|
||||
swSendReminders = view.findViewById(R.id.swSendReminders);
|
||||
@@ -266,15 +264,6 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
||||
}
|
||||
});
|
||||
|
||||
btnBlockedSenders.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(getContext());
|
||||
lbm.sendBroadcast(new Intent(ActivitySetup.ACTION_MANAGE_LOCAL_CONTACTS)
|
||||
.putExtra("junk", true));
|
||||
}
|
||||
});
|
||||
|
||||
swAutoIdentity.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
|
||||
@@ -34,6 +34,7 @@ import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AdapterView;
|
||||
import android.widget.Button;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.CompoundButton;
|
||||
import android.widget.ImageButton;
|
||||
@@ -77,6 +78,7 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
private CheckBox[] cbDay;
|
||||
private TextView tvScheduleIgnore;
|
||||
private ImageButton ibSchedules;
|
||||
private Button btnBlockedSenders;
|
||||
|
||||
private SwitchCompat swQuickSyncImap;
|
||||
private SwitchCompat swQuickSyncPop;
|
||||
@@ -155,6 +157,7 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
};
|
||||
tvScheduleIgnore = view.findViewById(R.id.tvScheduleIgnore);
|
||||
ibSchedules = view.findViewById(R.id.ibSchedules);
|
||||
btnBlockedSenders = view.findViewById(R.id.btnBlockedSenders);
|
||||
|
||||
swQuickSyncImap = view.findViewById(R.id.swQuickSyncImap);
|
||||
swQuickSyncPop = view.findViewById(R.id.swQuickSyncPop);
|
||||
@@ -309,6 +312,15 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
}
|
||||
});
|
||||
|
||||
btnBlockedSenders.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(getContext());
|
||||
lbm.sendBroadcast(new Intent(ActivitySetup.ACTION_MANAGE_LOCAL_CONTACTS)
|
||||
.putExtra("junk", true));
|
||||
}
|
||||
});
|
||||
|
||||
swQuickSyncImap.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
|
||||
Reference in New Issue
Block a user