xutils 初始化的问题
问下,
@ViewInject(R.id.garden_name)
private TextView shcoolInfoTv;
但是如果程序中这样写:
View headView=LayoutInflater.from(mActivity).inflate(R.layout.item_index_head,null );
那其item_index_head内部的标签如何初始化?
是不是只能这样写:
push_info_attention_tv =(TextView) headView.findViewById(R.id.push_info_attention);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@ViewInject(value=R.id.push_info_attention,parentId=R.layout.item_index_head)
private TextView push_info_attention_tv;