Made account colors pro featue

pull/125/head
M66B 6 years ago
parent 439d0a917a
commit 7f306d3af3

@ -32,6 +32,7 @@ Pro features
------------ ------------
* Signatures * Signatures
* Account colors
* Standard replies * Standard replies
* Progressive search (first local, then server) * Progressive search (first local, then server)
* Preview sender/subject in new messages status bar notification * Preview sender/subject in new messages status bar notification

@ -282,20 +282,22 @@ public class FragmentAccount extends FragmentEx {
btnColor.setOnClickListener(new View.OnClickListener() { btnColor.setOnClickListener(new View.OnClickListener() {
@Override @Override
public void onClick(View v) { public void onClick(View v) {
int[] colors = getContext().getResources().getIntArray(R.array.colorPicker); if (PreferenceManager.getDefaultSharedPreferences(getContext()).getBoolean("pro", false)) {
int[] colors = getContext().getResources().getIntArray(R.array.colorPicker);
ColorPickerDialog colorPickerDialog = new ColorPickerDialog(); ColorPickerDialog colorPickerDialog = new ColorPickerDialog();
colorPickerDialog.initialize( colorPickerDialog.initialize(R.string.title_account_color, colors, color, 4, colors.length);
R.string.title_account_color, colors, color, 4, colors.length); colorPickerDialog.setOnColorSelectedListener(new ColorPickerSwatch.OnColorSelectedListener() {
@Override
colorPickerDialog.setOnColorSelectedListener(new ColorPickerSwatch.OnColorSelectedListener() { public void onColorSelected(int color) {
@Override setColor(color);
public void onColorSelected(int color) { }
setColor(color); });
} colorPickerDialog.show(getFragmentManager(), "colorpicker");
}); } else {
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
colorPickerDialog.show(getFragmentManager(), "colorpicker"); fragmentTransaction.replace(R.id.content_frame, new FragmentPro()).addToBackStack("pro");
fragmentTransaction.commit();
}
} }
}); });

Loading…
Cancel
Save