Hi I am relatively new to Android, and I would like, if possible, some guidelines or suggestions on where to search in order to solve my issue. Apparently, I do not possess the
You can do this by using a custom ProgressBar
. Even more simpler
progress_bar_clip.xml
-
-
You don't have do load any animations. Just use a handler and increment the progress bar by 1.
final ProgressBar bar = (ProgressBar) findViewById(R.id.progressbar);
final Handler handler = new Handler();
runnable = new Runnable() {
@Override
public void run() {
if(bar.getProgress() != 100) {
bar.incrementProgressBy(1);
handler.postDelayed(runnable, 500);
}
}
};;
handler.post(runnable);