zerophilip / MeterView

Android custom view to monitor progress as an arc as opposed to a straight line.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MeterView

This provided code allows a developer to use a circular meter to show progress in their application as opposed to the default progress indicator provided by android.

The view allows for some customization in the xml. One can customize:

  1. spacing which is the distance between the meter and the edges of the view. Much like padding.
  2. lineWidth which is the thikcness of the meter
  3. lineColor which is the color of the meter
  4. pathColor which is the color of the path the meter follows

For example:

<com.amurani.meterview.MeterView android:id="@+id/meter" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="5" meterview:spacing="10" meterview:lineWidth="5" meterview:lineColor="#0af" meterview:pathColor="#ccc" />

In the JAVA section, it is used as any other view: MeterView meter = (MeterView) this.findViewById(R.id.meter);

Its object allows access to the following methods:

  1. prepare(int stop, int interval). This defines the ending value and the refresh interval
  2. start(). This starts the meter.
  3. pause(). This pauses the meter.
  4. stop(). This stops and resets the meter.
  5. runAsync(boolean runasync). This makes the meter run asychronously.
  6. setValue(int value, int total). This allows you to define your own value for the meter or update from a Thread or loop or what have you.
  7. getValue(). This gives a percentage value of the meter's progress.
  8. setOnFinishListener(OnFinishListener f). This method allows one to define a custom action to be performed once the meter completes a cycle.

Simple implementation of how to use the View are:

  1. in a timer,

  1. when monitoring downloads,

  1. display the battery level,

More needs to be added and the code is not perfect. Improvements are greatly encouraged. Use the code as you please for I can't guaranten future or maintaian it myself.

(Sorry for the image size BTW)

About

Android custom view to monitor progress as an arc as opposed to a straight line.