设置了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");