闪烁白键
2017-05-07 20:46
照着老师的代码打的,但是最后要运行的时候,发现引用自定义Calendar的xml里显示不出来
//将控件和属性绑定
private void bindControl(Context context) {
View view=View.inflate(getContext(),R.layout.calendar_view,null);
// LayoutInflater inflater = LayoutInflater.from(context);
// inflater.inflate(R.layout.calendar_view, this,false);
this.addView(view);
btnNext = (ImageView) view.findViewById(R.id.btnNext);
btnPrev = (ImageView) view.findViewById(R.id.btnPrev);
txtDate = (TextView) view.findViewById(R.id.txtDate);
grid = (GridView) view.findViewById(R.id.calendar_grid);
}
f
我同学把原来老师的代码注释掉,然后把view添加到this.addView
inflater.inflate(R.layout.calendar_view, this);第三个参数不填
我的也显示不出来
然后debug都不动
你解决了嘛我的也显示不出来,求助!
新手不懂
自定义实现日历控件
14139 学习 · 44 问题
相似问题