Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 有条件地显示按钮大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道如何在找到布局 XML后启用/禁用布局 XML中定义的按钮:

TESTBtn = (Button)findViewById(R.id.test);

但除了有条件地加载布局之外,有没有办法在我的代码使用“使用该布局XML,但不加载那里定义的按钮”?

解决方法

要在Xml中设置View的可见性,请使用android:visibility属性.

以下设置按钮可见性消失.当设置为Android时,Android将不会@L_616_5@按钮,并且在布局计算期间不会包含它的大小.

<Button android:id="@+id/mybutton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hello" 
            android:visibility="gone"/>

设置android:visibility =“invisible”不会@L_616_5@按钮,但在布局计算期间包含它.

<Button android:id="@+id/mybutton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hello" 
            android:visibility="invisible"/>

要以编程方式在代码中@L_616_5@按钮,请调用setVisibility()方法.

Button btn = (Button)findViewById(R.id.thebuttonid);
btn.setVisibility(View.VISIBLE); //View.GONE,View.INVISIBLE are available too.

大佬总结

以上是大佬教程为你收集整理的android – 有条件地显示按钮全部内容,希望文章能够帮你解决android – 有条件地显示按钮所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。