We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mui里面用的是雪花样式,但是大部分APP都是一个圈圈在转,这个如何实现?
The text was updated successfully, but these errors were encountered:
给你我写的
progressDialog: function (params) { var dialog = plus.android.newObject('android.app.ProgressDialog', plus.android.runtimeMainActivity()); plus.android.invoke(dialog, 'setTitle', params.title); plus.android.invoke(dialog, 'setMessage', params.message); plus.android.invoke(dialog, 'setCancelable', false); return { show: function () { plus.android.invoke(dialog, 'show'); return this; }, close: function () { plus.android.invoke(dialog, 'dismiss'); }, setMessage: function (text) { plus.android.invoke(dialog, 'setMessage', text); } } }
Sorry, something went wrong.
No branches or pull requests
mui里面用的是雪花样式,但是大部分APP都是一个圈圈在转,这个如何实现?
The text was updated successfully, but these errors were encountered: