我正在尝试创建一个隐藏/显示类似于“javascript hide and show”的.xml布局项的功能?如果对象已经在xml中声明了,我该如何实现呢?
答案 0 :(得分:3)
这样的东西?
Button b=(Button)findViewById(R.id.my_button);
b.setVisibility(View.GONE);
<Button
android:id="@+id/my_button"/>
将按钮更改为您想要更改其可见性的任何元素。
答案 1 :(得分:2)
只需更改View的可见性。您需要定义一个侦听器,以便在VISIBLE
和GONE
或INVISIBLE
之间切换View#setVisibility()
。