gpt4 book ai didi

Android:批量启用/禁用按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:42:03 24 4
gpt4 key购买 nike

我有一个 Activity ,其中在 TableLayout 中放置了一堆按钮,这与拨号盘没有什么不同。在某些操作中,我需要暂时禁用按钮。令我不愉快的是,执行 TableLayout.setEnabled(false) 对嵌套按钮没有影响。我是坚持设置每个单独的按钮,还是有一种漂亮(更好)的方法来实现相同的目的?

最佳答案

我会尝试做这样的事情:

TableLayout tableLayoutInstance; // let's suppouse you have already initialized it
// blablabla
// example to deactivate all buttons
ArrayList<View> touchables = tableLayoutInstance.getTouchables();
for(View touchable : touchables){
if( touchable instanceof Button )
((Button)touchable).setEnabled(false);
}

关于Android:批量启用/禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3205384/

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