• Stars
    star
    285
  • Rank 145,115 (Top 3 %)
  • Language
    Java
  • License
    Other
  • Created almost 12 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A circular seek bar for Android

CircularSeekBar

A circular seek bar for Android.

Modification

1. Modified setProgress(int progress) method.

2. Added hideSeekBar() To hide seekbar.

3. Added ShowSeekBar() To show seekbar; Bydefault its visible.


Screenshot:

Imgur

Sample usage:

public class Welcome extends Activity {
	CircularSeekBar circularSeekbar;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		circularSeekbar = new CircularSeekBar(this);
		circularSeekbar.setMaxProgress(100);
		circularSeekbar.setProgress(100);
		setContentView(circularSeekbar);
		circularSeekbar.invalidate();

		circularSeekbar.setSeekBarChangeListener(new OnSeekChangeListener() {

			@Override
			public void onProgressChange(CircularSeekBar view, int newProgress) {
				Log.d("Welcome", "Progress:" + view.getProgress() + "/" + view.getMaxProgress());
			}
		});

	}
}

Advanced Usage

Advanced Usage Documentation

More Repositories

1

FBMessageScraper

A python script to download facebook chats
Python
189
star
2

ProAndroidAugmentedReality

Official repository for Pro Android Augmented Reality (http://www.apress.com/9781430239451)
Java
154
star
3

AppaholicsUpdateChecker

A free and open source library to check for and install updates for non app store apps.
Java
47
star
4

CompilingLauncher2

A compiling version of Launcher 2 from the Android ICS source code
Java
21
star
5

CompilingAndroidMail

Android mail client from AOSP modified to compile
Java
18
star
6

bitpeers

Go
13
star
7

UserManagement

A GUI app for Android 4.1 users to create and manage multiple accounts on rooted devices
Java
8
star
8

blockutils

A generic blockchain parsing utility package for golang
Go
5
star
9

ListViewFont

Sample project demonstrating how to use a custom font in all TextViews in a ListView.
Java
4
star
10

AppaholicsAndroid

Source code for the tutorials at appaholics.in
Java
3
star
11

GroupsPlus

A Facebook Group Enhancement Suite
JavaScript
3
star
12

IndianGeneralElections2014

Python
2
star
13

recovermykeystore

HTML
1
star
14

GeneralSnippetsJava

General snippets and full programs
Java
1
star
15

btcsupply

Tracks reductions in Bitcoin's supply through burns and bugs
Go
1
star
16

isbtc1m

Is BTC $1M yet?
Go
1
star
17

NeatMenu

Simple example code for a screen independant game level select menu
Java
1
star
18

LearnAndroid

Java
1
star
19

postmaster

A simple dashboard to track mail events from AWS SES
Go
1
star
20

taskmail

A golang program to email taskwarrior tasks
Go
1
star
21

spn2

Go
1
star
22

blockreward

A self contained, zero-dependency package to compute block rewards and supply for Bitcoin and Bitcoin-like chains
Go
1
star
23

raghavsood.github.io

HTML
1
star