如何更改视图的可见性?

发布于 2024-10-08 23:48:27 字数 307 浏览 1 评论 0原文

如何更改自定义视图的可见性?

我知道如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疏忽 2024-10-15 23:48:27

调用 setContentView(R.layout.your_layout) 后,您可以调用 findViewById(R.id.compview) 并使用 setVisibility()就像你上面提到的那样。

After you have called setContentView(R.layout.your_layout) you can call findViewById(R.id.compview) and than use setVisibility() like you mentioned it above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文