Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# xamarin circular progress bar - Android

created a circular progress bar which is working fine with the animation. but while trying to display it using dynamic data progress bar is not updating.

Below code is working

  progrssBarObj = FindViewById<ProgressBar>(Resource.Id.progressBarSync);

  ObjectAnimator animation = ObjectAnimator.OfInt(progrssBarObj, "progress", 0, 100); // see this max value coming back here, we animale towards that value
  animation.SetDuration(3000); //in milliseconds
  animation.SetInterpolator(new DecelerateInterpolator());
  animation.Start();

and AXML code is

<ProgressBar
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_column="2"
            android:id="@+id/progressBarSync"
            android:layout_width="300dp"
            android:layout_height="300dp"
            android:progressDrawable="@drawable/circular_progress_bar"
            android:background="@drawable/progress_bar_background" />

But when I tried something like in the loop the progress bar is not updating with the data. Basically progress bar is not updating in circle.

           for (int i = 0; i <= 100; i++)
            {
                int cnt = 0;
                cnt = cnt + i;
                progrssBarObj.Progress = cnt;

            }

Any help will be appreciated.

like image 955
Rakesh Avatar asked Aug 16 '16 11:08

Rakesh


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C language basics?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


1 Answers

I kept the for loop inside in new task and it got worked

await Task.Run(() =>
{
  for (int i = 0; i < dtITM.Rows.Count; i++)
  {
    int cnt = 0;
    cnt = cnt + i;
    progrssBarObj.Progress = cnt;
  }
}
like image 113
Rakesh Avatar answered Sep 20 '22 12:09

Rakesh