标签:
1、@ViewInject
和findViewById()方法一样,简便的写法,谷歌官方并不推介。
@ViewInject(R.id.ll_top_view) private View mTopView;
和
1 private View mTopView; 2 mTopView=this.findViewById(R.id.ll_top_view);
一样。
标签:
原文地址:http://www.cnblogs.com/YaoJianXun/p/5462579.html