学习路径:
http://thinkgoogle.iteye.com/blog/1312286
http://www.oschina.net/question/54100_32486?fromerr=DlvbTN6P
准备做一个弹出日历选择的弹出框,但是日历不可用。。问题未解决
基本思路是自定义一个xml布局文件:
然后再java代码里引用
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("日历");