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.
在android中,如果我有一个线性布局对象,它里面有一堆东西,比如textviews,更多的线性布局包含更多的线性布局。你怎么能禁用(.setEnabled(false);)给定线性布局中的所有内容?
.setEnabled(false);
谢谢
像这样的东西:
for(int i = 0; i < ((LinearLayout) YourLinearLayout).getChildCount(); i++){ ((View)((LinearLayout) YourLinearLayout).getChildAt(i)).setEnabled(false); }
检查这个:
如何在 Android 中禁用/启用 LinearLayout 上的所有子项