gpt4 book ai didi

java - 如何在 Android 中禁用/启用 LinearLayout 上的所有子项

转载 作者:IT老高 更新时间:2023-10-28 23:27:45 26 4
gpt4 key购买 nike

有没有办法对某个布局的所有 child 进行编程?

例如,我有两个 child 的布局:

<LinearLayout android:layout_height="wrap_content"
android:id="@+id/linearLayout1" android:layout_width="fill_parent">
<SeekBar android:layout_height="wrap_content" android:id="@+id/seekBar1"
android:layout_weight="1" android:layout_width="fill_parent"></SeekBar>
<TextView android:id="@+id/textView2" android:text="TextView"
android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_height="wrap_content"></TextView>
</LinearLayout>

我想做类似的事情:

LinearLayout myLayout = (LinearLayout) findViewById(R.id.linearLayout1);
myLayout.setEnabled(false);

为了禁用两个 TextView 。

知道怎么做吗?

最佳答案

LinearLayout 扩展了 ViewGroup,因此您可以使用 getChildCount() 和 getChildAt(index) 方法来遍历您的 LinearLayout 子级,并对它们做任何您想做的事情。我不确定启用/禁用是什么意思,但如果你只是想隐藏它们,你可以做 setVisibility(View.GONE);

所以,它看起来像这样:

LinearLayout myLayout = (LinearLayout) findViewById(R.id.linearLayout1);
for ( int i = 0; i < myLayout.getChildCount(); i++ ){
View view = myLayout.getChildAt(i);
view.setVisibility(View.GONE); // Or whatever you want to do with the view.
}

关于java - 如何在 Android 中禁用/启用 LinearLayout 上的所有子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7687784/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com