是否可以更改 ListView 中项目的大小?

发布于 2024-09-17 05:54:16 字数 119 浏览 2 评论 0原文

我有一个包含几个项目的 ListView 。是否可以更改 ListView 中所选项目的大小。例如,我想展开所选项目以显示一些按钮。

感谢您提前提供的帮助。

I have a ListView with few items. Is it possible to change size of the selected item in the ListView. For example, I want to expand selected item to show some buttons.

I appreciate you for help in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

↘紸啶 2024-09-24 05:54:16

在您不想要的项目中将这些按钮的可见性设置为 View.GONE。每当您需要它们时,请将它们设置为 View.VISIBLE。通过将它们设置为 View.GONE,android 不会将它们包含在任何类型的测量中(宽度或高度),并且看起来不应该存在任何东西。

  btn = (Button) findViewById(R.id.btn);

if(condition){
  btn.setVisibility(View.VISIBLE);
  btn.setText("You can see me!");
} else {
  btn.setVisibility(View.GONE);
 // btn.setText("Now you can't!");
}

Set the visibility of these buttons as View.GONE in the items that you don't want it. Whenever you need them set them as View.VISIBLE. By setting them as View.GONE android doesn't include them in any kind of measurement (width or height) and it looks like nothing was supposed to be there.

  btn = (Button) findViewById(R.id.btn);

if(condition){
  btn.setVisibility(View.VISIBLE);
  btn.setText("You can see me!");
} else {
  btn.setVisibility(View.GONE);
 // btn.setText("Now you can't!");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文