喜糖

移动开发工程师 。涉及 android、ios、jni

导航

2014年2月19日

摘要: 自定义实现个Factory,可以用来解析自定义的属性。public interface Factory { /** * Hook you can supply that is called when inflating from a LayoutInflater. * You can use this to customize the tag names available in your XML * layout files. * * * Note that it is good... 阅读全文

posted @ 2014-02-19 21:22 喜糖 阅读(1473) 评论(0) 推荐(0) 编辑

摘要: 获得 LayoutInflater 实例的三种方式1.LayoutInflaterinflater=getLayoutInflater();//调用Activity的getLayoutInflater()2.LayoutInflater localinflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);3.LayoutInflaterinflater=LayoutInflater.from(context);其实,这三种方式本质是相同的,从源码中可以看出:getLayoutInfla 阅读全文

posted @ 2014-02-19 20:46 喜糖 阅读(997) 评论(0) 推荐(0) 编辑