Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 eclipse 用 java 开发一个 Android 应用程序。
我的 XML 中有 2 个相对布局。一种布局中有 2 个按钮,另一种布局有 3 个按钮。我正在尝试如何在其中包含两个按钮的相对布局中检索按钮的所有 ID。
遍历父视图以获取所有子视图
ViewGroup parentView = (ViewGroup) findViewById(R.id.linearLayout1); for(int i=0; i < parentView.getChildCount(); i++) { View childView = parentView.getChildAt(i); int resID = childView.getId(); }