(DialogInterface dialogInterface, int pos, boolean checked)
| 225 | .setTitle(R.string.title_unhide) |
| 226 | .setMultiChoiceItems(titles, states, new DialogInterface.OnMultiChoiceClickListener() { |
| 227 | @Override |
| 228 | public void onClick(DialogInterface dialogInterface, int pos, boolean checked) { |
| 229 | EntityLog.Type type = EntityLog.Type.values()[pos]; |
| 230 | prefs.edit().putBoolean(getKey(type), checked).apply(); |
| 231 | adapter.setTypes(getTypes()); |
| 232 | } |
| 233 | }) |
| 234 | .setPositiveButton(R.string.title_setup_done, null) |
| 235 | .show(); |