我正在尝试通过返回第一个查看视图来按类型在视图组中获取视图。
private View findViewByType(ViewGroup p, View v) {
for (int i = 0; i < p.getChildCount(); i++)
if (p.getChildAt(i) instanceof v.getClass())
return p.getChildAt(i);
}
我似乎无法让view.getClass()
工作。如何从视图中获取课程?
答案 0 :(得分:2)
一种方法可能是
p.getChildAt(i).getClass().isInstance(v)
isIsntance(Object)
确定指定的Object
是否与此Class
所代表的对象分配兼容。您可以阅读文档here
答案 1 :(得分:1)
改变你的if:
private View findViewByType(ViewGroup p, View v) {
for (int i = 0; i < p.getChildCount(); i++)
if (p.getChildAt(i).getClass().isInstance(v))
return p.getChildAt(i);
}