如何更改视图的可见性?
如何更改自定义视图的可见性?
我知道如何使用 listview(- getListView().setVisibility(View.GONE) -) 执行此操作,但我不知道如何使用 xml 中定义的自定义视图“compview”执行此操作,如下所示:
<View android:id="@+id/compview" android:layout_width="wrap_content" android:layout_height="wrap_content">
任何帮助表示赞赏。
How do I change the visibility of my custom view?
I know how to do it with a listview(- getListView().setVisibility(View.GONE) -) but I don't know how to do it with my custom view "compview" defined in the xml like this:
<View android:id="@+id/compview" android:layout_width="wrap_content" android:layout_height="wrap_content">
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
setContentView(R.layout.your_layout)
后,您可以调用findViewById(R.id.compview)
并使用setVisibility()
就像你上面提到的那样。After you have called
setContentView(R.layout.your_layout)
you can callfindViewById(R.id.compview)
and than usesetVisibility()
like you mentioned it above.