码迷,mamicode.com
首页 > 其他好文 > 详细

findViewById 的偷懒方案,这函数名,哈哈。除了注解和在线生成,多了种偷懒方式

时间:2015-01-20 15:45:44      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

在微博中发现的偷懒方案,好简单。。

//结果与(...)findViewById(R.id....)一模一样,采用$作为方法名称,借鉴自jQuery
	public <T extends View> T $(int id) {
		return (T)super.findViewById(id);
	}

用法

private EditText editor;
editor = $(R.id.p_name);
editor.setText("Hello World!");


findViewById 的偷懒方案,这函数名,哈哈。除了注解和在线生成,多了种偷懒方式

标签:

原文地址:http://blog.csdn.net/js931178805/article/details/42917957

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!