自定义的calender在xml里显示不出来
照着老师的代码打的,但是最后要运行的时候,发现引用自定义Calendar的xml里显示不出来
照着老师的代码打的,但是最后要运行的时候,发现引用自定义Calendar的xml里显示不出来
2017-05-07
//将控件和属性绑定
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
举报