如何在android中以编程方式禁用布局及其内容
我在一个RelativeLayout中有4个LinearLayout,并且我还使用了一个ImageView。当显示 ImageView 时,我想禁用 4 个 LinearLayouts 及其内容。每个 LinearLayout 包含 4 个按钮。下面显示的是我禁用和启用这些布局的函数。有人可以帮助我理解为什么这不起作用吗?
private void disablelayout(final LinearLayout l1,final LinearLayout l2,final LinearLayout l3,final LinearLayout l4)
{
l1.setEnabled(false);
l2.setEnabled(false);
l3.setEnabled(false);
l4.setEnabled(false);
}
private void enablelayout(final LinearLayout l1,final LinearLayout l2,final LinearLayout l3,final LinearLayout l4)
{
l1.postDelayed(new Runnable(){
@Override
public void run() {
l1.setEnabled(true);
l2.setEnabled(true);
l3.setEnabled(true);
l4.setEnabled(true);
}
}, 3000);
}
I have 4 LinearLayouts in a RelativeLayout and I am also using an ImageView. When the ImageView is displayed I want to disable the 4 LinearLayouts and their contents. Each LinearLayout contains 4 buttons. Shown below is my function to disable and enable these layouts. Can someone help me understand why this isn't working?
private void disablelayout(final LinearLayout l1,final LinearLayout l2,final LinearLayout l3,final LinearLayout l4)
{
l1.setEnabled(false);
l2.setEnabled(false);
l3.setEnabled(false);
l4.setEnabled(false);
}
private void enablelayout(final LinearLayout l1,final LinearLayout l2,final LinearLayout l3,final LinearLayout l4)
{
l1.postDelayed(new Runnable(){
@Override
public void run() {
l1.setEnabled(true);
l2.setEnabled(true);
l3.setEnabled(true);
l4.setEnabled(true);
}
}, 3000);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用 setVisibility() 设置为 INVISIBLE 或 GONE。
Use setVisibility() to either INVISIBLE or GONE.
像这样使用:
Use like this:
将所有项目的“
Clickable
”属性设置为 false。该方法是setClickable(boolean)。
之后就没有人可以点击它了。您也可以研究这个问题:如何禁用 Android 按钮
Set "
Clickable
" property for all items to false. The method issetClickable(boolean).
After that no one could click it. Also you could look into this question: How to disable an Android button