问答详情
源自:-

自定义的calender在xml里显示不出来

照着老师的代码打的,但是最后要运行的时候,发现引用自定义Calendar的xml里显示不出来

提问者:闪烁白键 2017-05-07 20:46

个回答

  • 闪烁白键
    2017-06-28 22:26:30

    //将控件和属性绑定
        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

  • 东天目的土豆哥
    2017-06-03 16:13:45

    inflater.inflate(R.layout.calendar_view, this);第三个参数不填

  • 慕仔7292167
    2017-05-18 15:44:35

    我的也显示不出来

    然后debug都不动

  • 一个很帅的学生丶
    2017-05-17 16:34:29

    你解决了嘛我的也显示不出来,求助!

  • 慕瓜8183922
    2017-05-08 00:38:10

    新手不懂