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);
一样。
时间: 2024-10-10 23:44:54
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);
一样。