作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图通过返回第一个 View 找到的 View 来在 View 组内按类型获取 View 。
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()
工作。如何从 View 中获取类?
最佳答案
一种方法是
p.getChildAt(i).getClass().isInstance(v)
isIsntance(Object)
确定指定的 Object
是否与此 Class
表示的对象赋值兼容。您可以阅读文档 here
关于java - 安卓 : How to get view class from a view to use with instanceOf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44841550/
我是一名优秀的程序员,十分优秀!