我的问题是什么意思(如果我含糊不清地说,因为我找不到我的问题的答案)是采用根布局,获取该布局的所有子项,并对任何指定类型的实例。
现在,我可以通过固定的方式轻松完成这项工作......
RelativeLayout root = (RelativeLayout) findViewById(R.id.root_layout);
for(int i = 0; i <= root.getChildCount(); i++){
View v = root.getChildAt(i);
if(v instanceof CustomLayout){
// Do Callback on view.
}
}
事情是,我想让它更通用。我应该可以使用任何布局,并检查它是否是任何布局的实例。特别是,我希望它足够通用,可以与任何东西一起使用(如果这是可能的话)。当然,我不介意停下来安排布局。
我想构建这些子集的集合并返回它们,如果可能的话,返回相同的类型。我很久没有完成Java了,所以我很生疏,但我想用反射来完成这个。这有可能吗?
如果我通过了我想要的类,那可能吗?
编辑:
之前我没有看到dtann的回答,一定是错过了,但是我自己做了,看起来和他非常相似。我的实现与此
有关public static abstract class CallbackOnRootChildren<T> {
@SuppressWarnings("unchecked")
public void callOnChildren(Class<T> clazz, ViewGroup root) {
for(int i = 0; i < root.getChildCount(); i++){
View v = root.getChildAt(i);
if(v instanceof ViewGroup){
callOnChildren(clazz, (ViewGroup) v);
}
if(clazz.isAssignableFrom(v.getClass())){
// The check to see if it is assignable ensures it's type safe.
onChild((T) v);
}
}
}
public abstract void onChild(T child);
}
不同之处在于我的依赖回调和诸如此类的东西,但整体上是相同的概念。
答案 0 :(得分:2)
请尝试以下代码:
public <T> List<T> getViewsByClass(View rootView, Class<T> targetClass) {
List<T> items = new ArrayList<>();
getViewsByClassRecursive(items,rootView,targetClass);
return items;
}
private void getViewsByClassRecursive(List items, View view, Class clazz) {
if (view.getClass().equals(clazz)) {
Log.d("TAG","Found " + view.getClass().getSimpleName());
items.add(view);
}
if (view instanceof ViewGroup) {
ViewGroup viewGroup = (ViewGroup)view;
if (viewGroup.getChildCount() > 0) {
for (int i = 0; i < viewGroup.getChildCount(); i++) {
getViewsByClassRecursive(items, viewGroup.getChildAt(i), clazz);
}
}
}
}
调用getViewsByClass
并传入根布局和目标类。您应该收到作为目标类实例的所有视图的列表。如果它也是目标类的实例,这将包括根布局本身。此方法将搜索根布局的整个视图树。
答案 1 :(得分:0)
没有通用的方法。如果有人这样做,就会做同样的事情。
viewgroup中的视图保存在字段中(源代码):
// Child views of this ViewGroup
private View[] mChildren;
// Number of valid children in the mChildren array, the rest should be null or not
// considered as children
private int mChildrenCount;