Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 webview 并想听它的加载事件,我的操作栏上有一个刷新按钮。
如何以编程方式将按钮更改为微调器?
您不能神奇地将按钮更改为微调器。您可以做的是禁用按钮并启用微调器。
myButton.setEnabled(false); mySpinner.setEnabled(true);
如果你想让微调器代替按钮,那么你将不得不将所有布局绘制例程放入 buildLayout() (或任何你想调用的方法)并使用重新绘制整个布局按钮或微调器,具体取决于应用程序的状态。