唯一标识 getParent() 找到的 Android 视图

Uniquely identify an Android view found by getParent()

遍历嵌套 Android 视图的最佳方法是什么?

如果您必须通过 getParent().getParent().getParent().etc 查找元素。在继续使用更多 getParents 或 findViewById 之前,有没有一种方法可以确定我最终得到的 LinearLayout 是否正是我想要的?

我猜你可以试试 ((View)elem.getParent().getParent()).getId()==R.id.parent_id 如果你给你想要识别的 LinearLayout 一个 id。