在android中,如果我有一个线性布局对象,并且在其中有很多东西,例如textviews,则更多的线性布局包含更多的线性布局。您如何仅禁用(.setEnabled(false);)给定线性布局中的所有内容?

谢谢

最佳答案

像这样:

for(int i = 0; i < ((LinearLayout) YourLinearLayout).getChildCount(); i++){
  ((View)((LinearLayout) YourLinearLayout).getChildAt(i)).setEnabled(false);
}

关于java - 如何禁用Android中线性布局的所有嵌套子代?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18037240/

10-11 01:37