将用户选择的所有值放在列表中的TimePicker中并读取它

时间:2016-06-19 13:40:16

标签: java android datetimepicker

标题可能令人困惑。我有一个TimePicker供用户选择事件的持续时间,我不想获取用户输入的每个值,保存它,然后将TimePicker的默认值设置为用户选择最多次的时间,这样可以节省他的时间。

例如,如果用户经常选择1h和45m,当他回去添加另一个事件时,它将在1h和45m,到目前为止我没有尝试任何东西,因为我不知道如何,我只知道如何定义TimePicker的起始值。

timePickerDuration.setIs24HourView(true);    
timePickerDuration.setCurrentHour(1);
timePickerDuration.setCurrentMinute(30);

1 个答案:

答案 0 :(得分:1)

根据你的尝试直到这里,  如果您的HoursList ArrayList包含正确的值,那么您可以像这样循环并找到最常选择的小时,

Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (Integer i : HoursList) {
    Integer count = map.get(i);
    map.put(i, count != null ? count+1 : 0);
}

Integer mostlySelectedhr = Collections.max(map.entrySet(),
    new Comparator<Map.Entry<Integer, Integer>>() {
    @Override
    public int compare(Entry<Integer, Integer> o1, Entry<Integer, Integer> o2) {
        return o1.getValue().compareTo(o2.getValue());
    }
}).getKey();

最后mostlySelectedhr是最常选择的小时。