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
Class doesn`t contain function stop or start
Also progressbar can`t be hide or show . I use this progress visibility = view.gone progress visibility = view.visible
also it doesn`t work
please reply
The text was updated successfully, but these errors were encountered:
Before onCreate():
private lateinit var progressBar: ProgressBar
In onCreate():
progressBar = spin_kit
When you want to show or hide, just call:
progressBar.visibility = View.GONE
progressBar.visibility = View.VISIBLE
Sorry, something went wrong.
Okey, and in Java? :) @OEssHRERLr770rGGLOH0
@freeridre I haven't written java code in a while but it would look something like this I imagine?
private ProgressBar mProgressBar;
mProgressBar = (ProgressBar) findViewById(R.id.spin_kit);
mProgressBar.setVisibility(View.GONE)
mProgressBar.setVisibility(View.VISIBLE)
No branches or pull requests
Class doesn`t contain function stop or start
Also progressbar can`t be hide or show .
I use this
progress visibility = view.gone
progress visibility = view.visible
also it doesn`t work
please reply
The text was updated successfully, but these errors were encountered: