4

TimePicker我在里面创建了一个对话框。这在纵向模式下效果很好,但是,一旦更改为横向模式TimePicker减号按钮看起来会被裁剪

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

    <TextView android:id="@+id/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Time = " android:textSize="28dp"/>

    <TimePicker android:id="@+id/PickTime" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/text1" 
        android:layout_alignLeft="@id/text1"/>

    <Button android:id="@+id/StartStop" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start"
        android:layout_below="@id/text1" 
        android:layout_toRightOf="@id/PickTime"/>

</RelativeLayout> 

我的显示对话框的代码:

LayoutInflater factory;
factory = LayoutInflater.from(this);
View textEntryView = factory.inflate(R.layout.test, null);

AlertDialog dialog = new AlertDialog.Builder(this) 
    // .setTitle("Auto-Shutdown Setting")
    .setView(textEntryView)
    .setPositiveButton("Close", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {
            dialog.cancel();
            /* User clicked OK so do some stuff */
        }
    })
    .create();
dialog.show();

TimePicker timePicker = (TimePicker) dialog.findViewById(R.id.PickTime);
timePicker.setIs24HourView(true);
timePicker.setCurrentHour(12);
timePicker.setCurrentMinute(15);
timePicker.setOnTimeChangedListener(new TimePicker.OnTimeChangedListener() {
    public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {
        // ...
    }        
});

任何人都知道为什么会这样?是否可以自定义对话框的大小(使其更大)?任何其他解决方案将不胜感激。


JJD编辑:

由于我在 ScrollView 中有一个类似的组合日期和时间选择器布局的案例,我想在此处添加屏幕截图。@lwijono 如果它们没有显示您最初描述的内容,请随时删除它们。或发表评论,我会这样做。

肖像模式下的选择器

横向模式下的选择器

4

0 回答 0