本文主要是介绍Android set Tag, findViewWithTag使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
设置了tag为“principal”的view
ImageView principal = (ImageView) findViewById(R.id.imagen_home_0);principal.setTag("principal");
在其它地方获取,获取已经设置了tag为“principal”的view
LayoutInflater inflater = LayoutInflater.from(context);
View row = inflater.inflate(R.layout.your_viw_that_contains_that_image, parent, false);
ImageView principal = (ImageView) row.findViewById(R.id.imagen_home_0);
//or by tag
principal = (ImageView) row.findViewWithTag("principal");
这篇关于Android set Tag, findViewWithTag使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!