Android CalendarView出了什么问题

时间:2014-07-03 10:45:28

标签: android android-dialog

我希望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 看起来像这样:

enter image description here

我还尝试将日期设置为Dialog

CalendarView

但它仍然没有显示任何日期。

那里出了什么问题?

1 个答案:

答案 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>