LayoutInflater inflater= (LayoutInflater) getApplicationContext().getSystemService(LAYOUT_INFLATER_SERVICE); //載入界面
view =inflater.inflate(R.layout.pumkin_calendar,null);
AlertDialog.Builder ad;
ad = new AlertDialog.Builder(pumkinLand.this);
ad.setView(view);
ad.setTitle("日歷");
ad.create().show();
如上,想通過上述代碼加載日歷界面。無法成功,求指導。謝謝~
pumkin_calendar.xml界面
android:layout_width="match_parent" android:layout_height="match_parent">
android:layout_width="match_parent"
android:layout_height="590dp">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/calendarView2"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
如果把CALENDARview換成其他控件,是可以正常加載出來界面的。就是日歷不可。。