Coder Social home page Coder Social logo

sababado / circularview Goto Github PK

View Code? Open in Web Editor NEW
116.0 12.0 29.0 244 KB

A custom view for Android. It consists of a larger center circular view that is surrounded by other circles which may represent data.

License: Apache License 2.0

Shell 0.72% Java 99.28%

circularview's Issues

nice view

can you use the finger to spin the wheel with fraction on it? that would be extra nice.

Manifest merger failed

Trying to use this in android studio but getting:

Error:Execution failed for task ':app:processDebugManifest'.

Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:33:9-43
is also present at [com.sababado.circularview:library:1.1.1] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher).
Suggestion: add 'tools:replace="android:icon"' to element at AndroidManifest.xml:31:5-99:19 to override.

Longclick on marker without OnclickListener set

If you try to longclick on a marker without setting the click listener the app crashes

The ** ** part it's the suggestion to fix (CircularView.java)

private OnLongClickListener mOnLongClickListener = new OnLongClickListener() {
        @Override
        public boolean onLongClick(View v) {
            if ( **mOnCircularViewObjectClickListener != null** && isLongClickable()) {
                mLongClickRegistered = true;
                if (mTouchEventMarkerPos == -1) {
                    playSoundEffect(SoundEffectConstants.CLICK);
                    mOnCircularViewObjectClickListener.onClick(CircularView.this, true);
                    mTouchEventMarkerPos = null;
                } else if (mTouchEventMarker != null) {
                    playSoundEffect(SoundEffectConstants.CLICK);
                    mOnCircularViewObjectClickListener.onMarkerClick(CircularView.this, mTouchEventMarker, mTouchEventMarkerPos, true);
                    mTouchEventMarker = null;
                    mTouchEventMarkerPos = null;
                }
                return mLongClickRegistered;
            }
            return false;
        }
    };

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.