5

例如,当我在 18:00 创建这个 timePicker(below) 时,timePicker 的 timeValue 将为 06:00。在 19:44->07:44... 因此,从 AM/PM 切换到 24 小时模式后,它不会移动到正确的当前时间。我该如何改变呢?我的目标是 timePicker 显示创建它的当前时间。就像我在 AM/PM 模式下使用它时一样。

TimePicker timePicker = (TimePicker) convertView.findViewById(R.id.time_picker);
timePicker.setIs24HourView(true);

对不起,糟糕的表述,希望你能理解我的问题。否则就问吧。

更新:

public class ChooseTimeViewDialog extends AlertDialog {

    protected Context context;


    public ChooseTimeViewDialog(final Context context) {
        super(context);     
        this.context = context;
    }

    public void onCreate(Bundle savedInstanceState) {
        LayoutInflater inflater = this.getLayoutInflater();

        View convertView = inflater.inflate(R.layout.dialog_choose_time_view, null);
        setContentView(convertView);
        setTitle(R.string.title_dialog_choose_time_view);

        final TimePicker taskTimePicker = (TimePicker) convertView.findViewById(R.id.dctv_task_time_picker);
        taskTimePicker.setIs24HourView(true);


        setButton(DialogInterface.BUTTON_POSITIVE, "Choose", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                int hour = taskTimePicker.getCurrentHour();
                int minute = taskTimePicker.getCurrentMinute();

                Calendar cal = new GregorianCalendar();
                cal.set(0, 0, 0, hour, minute, 0);

                ((AddTaskViewActivity) context).setSelectedTime(cal.getTime());
            }
        });
        setButton(DialogInterface.BUTTON_NEUTRAL, "No time", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                ((AddTaskViewActivity) context).setSelectedTime(null);
            }
        });

    }

}

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TimePicker
        android:id="@+id/dctv_task_time_picker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

在我将初始化移动到 onCreate 并使用 setContentView(View) 后,对话框的背景是透明的,它是全屏的并且没有按钮..为什么?

4

3 回答 3

7

我可以使用 timePicker.setCurrentHour(new Date().getHours()),但这不是我想要的解决方案。应该有可能以更好的方式解决它。

查看源代码,这是一个在 API 10 之后出现的错误:

public void setIs24HourView(Boolean is24HourView) {
    if (mIs24HourView == is24HourView) {
        return;
    }
    mIs24HourView = is24HourView; 
    // cache the current hour since spinner range changes
    int currentHour = getCurrentHour();
    updateHourControl();
    // set value after spinner range is updated
    setCurrentHour(currentHour);
    updateAmPmControl();
}

正确的顺序是:

// cache the current hour since spinner range changes
int currentHour = getCurrentHour();
mIs24HourView = is24HourView;

因为getCurrentHour()依赖mIs24HourView返回 1-12 或 0-23...

但在更新和部署源代码之前,您别无选择。你需要自己setCurrentHour()打电话setIs24HourView()

于 2012-12-01T19:13:19.933 回答
0

你应该初始化你的对话框onCreate

于 2012-12-01T18:38:18.477 回答
0

除了接受的答案之外,如果您使用的是 Xamarin,那么您可以通过继承 TimePicker 并覆盖 SetIs24HourView 来做同样的事情,如下所示:

public class TwentyFourHourMvxTimePicker : MvxTimePicker
{
    public TwentyFourHourMvxTimePicker(Context context, IAttributeSet attrs) : base (context, attrs)
    {

    }

    public override void SetIs24HourView (Java.Lang.Boolean is24HourView)
    {
        var current = CurrentHour;
        base.SetIs24HourView(is24HourView); 
        CurrentHour = current;
    }
}
于 2015-07-24T16:40:10.783 回答