如何删除颜色底部导航菜单

发布于 2025-01-24 08:10:40 字数 109 浏览 0 评论 0原文

我可以从项目中删除颜色。选择物品具有紫色,并选择灰色。当选择项目没有颜色的颜色png并取消选择灰色时,我需要//i.sstatic.net/zbnkb.jpg“ alt =”在此处输入图像描述”>

I can remove color from item. Select item have purple color and unselect have grey. I need when select item don’t have color only color png and unselect grey.enter image description here

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

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

发布评论

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

评论(1

豆芽 2025-01-31 08:10:40

当我试图理解时,您想在单击按钮时绘制该按钮。
因此,您可以使用OnClick事件使用SetbackgroundColor(您的颜色)按钮属性更改颜色。

我认为您可以创建一个将按钮的背景设置为紫色的方法,并在每个按钮点击事件中调用紫色,并将其呈灰色。

伪代码:

private void paintButton(Button b){
 for(Button but : ListOfYourButtons.items){
  if(but.equals(b))
   b.setbackgroundColor(Color.Purple);
  else
  but.setBackgroundColor(Color.grey);       
}

As I tried to understand you want to paint the button when it is clicked.
So you can use the onClick event to change color with setBackgroundColor(Your color) button property.

I think you can create a method that set de background of button to purple on the button clicked and grey to others, call it in each button click event.

PseudoCode:

private void paintButton(Button b){
 for(Button but : ListOfYourButtons.items){
  if(but.equals(b))
   b.setbackgroundColor(Color.Purple);
  else
  but.setBackgroundColor(Color.grey);       
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文