gpt4 book ai didi

android - 如何禁用远程 View 中的按钮?

转载 作者:行者123 更新时间:2023-11-29 15:05:18 25 4
gpt4 key购买 nike

我可以使用下面的代码使其不可见,但无法禁用它。

RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
contentView.setViewVisibility(R.id.buttonToDisable, View.INVISIBLE);

最佳答案

setEnabled() 是一个 @RemotableViewMethod,至少在 the now-current master branch of the source code 上.因此,您应该能够 use setBoolean() :

contentView.setBoolean(R.id.buttonToDisable, "setEnabled", false);

关于android - 如何禁用远程 View 中的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38044061/

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