gpt4 book ai didi

android - 图像按钮的可见性不适用于 Lollipop 设备及更高版本

转载 作者:太空狗 更新时间:2023-10-29 14:55:56 24 4
gpt4 key购买 nike

我有一个默认情况下不可见ImageButton:

  <ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/anchor"
android:src="@drawable/anchor"
android:elevation="6dp"
android:layout_below="@+id/rl_row_progress_bar"
android:layout_centerHorizontal="true"
android:visibility="invisible"/>

在 Activity 中我用这段代码改变了它的属性:

 if(lastPotition == 1){
mImageButton.setVisibility(View.GONE);
} else{
mImageButton.setVisibility(View.VISIBLE);
}

问题是在 pre lollipop 中图像按钮工作正常但在 API 21 和 22 中不起作用

这是 ImageButton 的声明:

private ImageButton mImageButton;
mImageButton =(ImageButton)v.findViewById(R.id.anchor); //anchor

谢谢你的帮助。

最佳答案

我遇到过这个问题,但后来我发现这与 Lollipop 设备中的设置有关。

以下是此处描述的三个选项:<强> Lollipop Notification setVisibility() Does Not Work?

  • Show all notification content 使所有通知(无论可见性)有效公开。

  • 隐藏敏感的通知内容尊重新的可见性类型。

  • 根本不显示通知将显示所有通知有效保密。

关于android - 图像按钮的可见性不适用于 Lollipop 设备及更高版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31458603/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com