我在其中创建了一个带有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) {
// ...
}
});
有谁知道为什么会这样?是否可以自定义对话框的大小(使其更大)?任何其他解决方案将不胜感激。
由于我在ScrollView中有一个类似的组合日期和时间选择器布局,我想在这里添加截图。 @lwijono如果他们没有显示您最初描述的内容,请随时删除它们。或发表评论,我会这样做。