Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/devadvance/circularseekbar
/ functions
Functions
43 in github.com/devadvance/circularseekbar
⨍
Functions
43
◇
Types & classes
2
↓ 9 callers
Method
recalculateAll
()
src/com/devadvance/circularseekbar/CircularSeekBar.java:568
↓ 6 callers
Method
onProgressChanged
(CircularSeekBar circularSeekBar, int progress, boolean fromUser)
src/com/devadvance/circularseekbar/CircularSeekBar.java:901
↓ 3 callers
Method
init
(AttributeSet attrs, int defStyle)
src/com/devadvance/circularseekbar/CircularSeekBar.java:822
↓ 3 callers
Method
setProgressBasedOnAngle
(float angle)
src/com/devadvance/circularseekbar/CircularSeekBar.java:562
↓ 2 callers
Method
calculateProgressDegrees
Calculate the degrees that the progress represents. Also called the sweep angle. Sets mProgressDegrees to that value.
src/com/devadvance/circularseekbar/CircularSeekBar.java:475
↓ 2 callers
Method
initPaints
Initializes the {@code Paint} objects with the appropriate styles.
src/com/devadvance/circularseekbar/CircularSeekBar.java:411
↓ 2 callers
Method
onStartTrackingTouch
(CircularSeekBar seekBar)
src/com/devadvance/circularseekbar/CircularSeekBar.java:905
↓ 1 callers
Method
calculatePointerAngle
Calculate the pointer position (and the end of the progress arc) in degrees. Sets mPointerPosition to that value.
src/com/devadvance/circularseekbar/CircularSeekBar.java:484
↓ 1 callers
Method
calculatePointerXYPosition
()
src/com/devadvance/circularseekbar/CircularSeekBar.java:490
↓ 1 callers
Method
calculateTotalDegrees
Calculates the total degrees between mStartAngle and mEndAngle, and sets mTotalCircleDegrees to this value.
src/com/devadvance/circularseekbar/CircularSeekBar.java:464
↓ 1 callers
Method
initAttributes
Initialize the CircularSeekBar with the attributes from the XML style. Uses the defaults defined at the top of this file when an attribute is not spec
src/com/devadvance/circularseekbar/CircularSeekBar.java:369
↓ 1 callers
Method
initPaths
Initialize the {@code Path} objects with the appropriate values.
src/com/devadvance/circularseekbar/CircularSeekBar.java:502
↓ 1 callers
Method
initRects
Initialize the {@code RectF} objects with the appropriate values.
src/com/devadvance/circularseekbar/CircularSeekBar.java:513
↓ 1 callers
Method
onStopTrackingTouch
(CircularSeekBar seekBar)
src/com/devadvance/circularseekbar/CircularSeekBar.java:903
Method
CircularSeekBar
(Context context)
src/com/devadvance/circularseekbar/CircularSeekBar.java:832
Method
getCircleColor
Gets the circle color. @return An integer color value for the circle
src/com/devadvance/circularseekbar/CircularSeekBar.java:922
Method
getCircleFillColor
Gets the circle fill color. @return An integer color value for the circle fill
src/com/devadvance/circularseekbar/CircularSeekBar.java:1032
Method
getCircleProgressColor
Gets the circle progress color. @return An integer color value for the circle progress
src/com/devadvance/circularseekbar/CircularSeekBar.java:940
Method
getIsTouchEnabled
Get whether user touch input is accepted. @return Boolean value of true if user touch input is accepted, false if user touch input is ignored.
src/com/devadvance/circularseekbar/CircularSeekBar.java:1077
Method
getMax
Get the current max of the CircularSeekBar. @return Synchronized integer value of the max.
src/com/devadvance/circularseekbar/CircularSeekBar.java:1061
Method
getPointerAlpha
Gets the pointer alpha value. @return An integer alpha value for the pointer (0..255)
src/com/devadvance/circularseekbar/CircularSeekBar.java:996
Method
getPointerAlphaOnTouch
Gets the pointer alpha value when touched. @return An integer alpha value for the pointer (0..255) when touched
src/com/devadvance/circularseekbar/CircularSeekBar.java:1014
Method
getPointerColor
Gets the pointer color. @return An integer color value for the pointer
src/com/devadvance/circularseekbar/CircularSeekBar.java:958
Method
getPointerHaloColor
Gets the pointer halo color. @return An integer color value for the pointer halo
src/com/devadvance/circularseekbar/CircularSeekBar.java:976
Method
getProgress
Get the progress of the CircularSeekBar. @return The progress of the CircularSeekBar.
src/com/devadvance/circularseekbar/CircularSeekBar.java:540
Method
isLockEnabled
Get whether the pointer locks at zero and max. @return Boolean value of true if the pointer locks at zero and max, false if it does not.
src/com/devadvance/circularseekbar/CircularSeekBar.java:620
Method
onDraw
(Canvas canvas)
src/com/devadvance/circularseekbar/CircularSeekBar.java:517
Method
onMeasure
(int widthMeasureSpec, int heightMeasureSpec)
src/com/devadvance/circularseekbar/CircularSeekBar.java:580
Method
onRestoreInstanceState
(Parcelable state)
src/com/devadvance/circularseekbar/CircularSeekBar.java:868
Method
onSaveInstanceState
()
src/com/devadvance/circularseekbar/CircularSeekBar.java:847
Method
onTouchEvent
(MotionEvent event)
src/com/devadvance/circularseekbar/CircularSeekBar.java:632
Method
setCircleColor
Sets the circle color. @param color the color of the circle
src/com/devadvance/circularseekbar/CircularSeekBar.java:912
Method
setCircleFillColor
Sets the circle fill color. @param color the color of the circle fill
src/com/devadvance/circularseekbar/CircularSeekBar.java:1022
Method
setCircleProgressColor
Sets the circle progress color. @param color the color of the circle progress
src/com/devadvance/circularseekbar/CircularSeekBar.java:930
Method
setIsTouchEnabled
Set whether user touch input is accepted or ignored. @param boolean value. True if user touch input is to be accepted, false if user touch input is to
src/com/devadvance/circularseekbar/CircularSeekBar.java:1069
Method
setLockEnabled
Set whether the pointer locks at zero and max or not. @param boolean value. True if the pointer should lock at zero and max, false if it should not.
src/com/devadvance/circularseekbar/CircularSeekBar.java:628
Method
setMax
Set the max of the CircularSeekBar. If the new max is less than the current progress, then the progress will be set to zero. If the progress is change
src/com/devadvance/circularseekbar/CircularSeekBar.java:1042
Method
setOnSeekBarChangeListener
(OnCircularSeekBarChangeListener l)
src/com/devadvance/circularseekbar/CircularSeekBar.java:892
Method
setPointerAlpha
Sets the pointer alpha. @param alpha the alpha of the pointer
src/com/devadvance/circularseekbar/CircularSeekBar.java:984
Method
setPointerAlphaOnTouch
Sets the pointer alpha when touched. @param alpha the alpha of the pointer (0..255) when touched
src/com/devadvance/circularseekbar/CircularSeekBar.java:1004
Method
setPointerColor
Sets the pointer color. @param color the color of the pointer
src/com/devadvance/circularseekbar/CircularSeekBar.java:948
Method
setPointerHaloColor
Sets the pointer halo color. @param color the color of the pointer halo
src/com/devadvance/circularseekbar/CircularSeekBar.java:966
Method
setProgress
Set the progress of the CircularSeekBar. If the progress is the same, then any listener will not receive a onProgressChanged event. @param progress Th
src/com/devadvance/circularseekbar/CircularSeekBar.java:550