我希望Dialog
显示CalendarView
。这就是我显示Dialog
:
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
View v = getActivity().getLayoutInflater().inflate(R.layout.dialog_calendart, null);
builder.setView(v);
builder.create().show();
这是布局:
<?xml version="1.0" encoding="utf-8"?>
<CalendarView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
当Dialog
不包含CalendarView
时,此功能正常,当Dialog
需要几秒钟才能显示时,我注意到{{1}中有这些行的加载}}:
LogCat
当它最终显示07-03 12:39:37.304 1534-1534/de.something.debug I/Choreographer﹕ Skipped 270 frames! The application may be doing too much work on its main thread.
07-03 12:39:37.348 1534-1534/de.something.debug D/dalvikvm﹕ GC_FOR_ALLOC freed 1621K, 10% free 18334K/20160K, paused 13ms, total 13ms
看起来像这样:
我还尝试将日期设置为Dialog
CalendarView
但它仍然没有显示任何日期。
那里出了什么问题?
答案 0 :(得分:2)
将其放入您的布局中并尝试
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<CalendarView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minHeight="200dp"
android:minWidth="200dp"
android:maxDate="01/01/2013"
android:minDate="09/01/2012"/>
</LinearLayout>