资源描述
单击此处编辑母版标题样式,单击此处编辑母版文本样式,第二级,第三级,第四级,第五级,2016/4/2,0,按钮类控件,Button,ImageButton,ToggleButton,CheckBox,RadioButton,RadiouGroup,自定义复合控件,1,基本按钮,2,选择按钮,3,练习,4,获取单选按钮及复选按钮的值,5,日期时间控件,6,日期,时间控件,7,其他基本控件,8,其他基本控件,9,其他基本控件,10,自定义,控件,-,案例,自定义一个复合控件,由一个文本编辑框和用来清除其内容的按钮所组成。,11,LayoutInflater,和,inflate(),方法的用法,LayoutInflater,作用是将,layout,的,xml,布局文件实例化为,View,类对象。,(1).,通过,SystemService,获得,LayoutInflater inflater = (LayoutInflater)context.getSystemServices(Context.LAYOUT_INFLATER_SERVICES);,View view = inflater.inflate(R.layout.main, null);,12,(2).,从给定的,context,中获得,LayoutInflater inflater = LayoutInflater.from(context);,View view = inflater.inflate(R.layout.mian, null);,(3).,LayoutInflater inflater =getLayoutInflater();,View layout = inflater.inflate(R.layout.main, null);,13,
展开阅读全文