Code Monkey home page Code Monkey logo

Comments (5)

hyuwah avatar hyuwah commented on August 16, 2024 1

I stumbled upon this issue but found a (rather hacky) way to solve this without having to modifying the library yourself

If you use Kotlin in your project, you can use this extension function snippet

// Extensions
fun QBadgeView.setup(count: Int, targetView: View) {
    this
            .setBadgeNumber(count)
            .setBadgeGravity(Gravity.TOP or Gravity.END)
            // add other setter / options according to your own need
            .bindTarget(targetView)
    if (count == 0) {
        val parent = this.targetView.parent
        if (parent is ViewGroup) {
            parent.children.forEach { child ->
                if (child is QBadgeView) { child.isVisible = false }
            }
        }
    }
}

// Usage
private fun setupView() {
    // val count = someMethodToGetCount()
    // val targetView = the view from findViewById / viewBinding / kotlin_synthetic
    QBadgeView(context).setup(count, targetView)
}

Basically, we just simply set the BadgeView's visibility to GONE when our number / count is 0

val parent = this.targetView.parent // "this" is the BadgeView object
        if (parent is ViewGroup) {
            // Iterate the children to search for BadgeView object
            parent.children.forEach { child ->
                if (child is QBadgeView) { 
                    child.isVisible = false  // If it's a BadgeView, we set visibility to gone, 
                                             // isVisible is just a nicer way to do it from core-ktx library
                                             // otherwise just use setVisibility( ... )
                }
            }
        }

Hope this helpful

from badgeview.

ewgcat avatar ewgcat commented on August 16, 2024

me ,two

from badgeview.

ewgcat avatar ewgcat commented on August 16, 2024

me,too

from badgeview.

ewgcat avatar ewgcat commented on August 16, 2024

neither the hide method nor the 0 input can hide the badge...

该问题是因为重复创建了BadgeView。应该让BadgeView只创建一次。

from badgeview.

hmawla avatar hmawla commented on August 16, 2024

The problem is
if (mBadgeNumber < 0) {
mBadgeText = "";
in QBadgeView.java

@OverRide
public Badge setBadgeNumber(int badgeNumber) {
mBadgeNumber = badgeNumber;
if (mBadgeNumber < 0) {
mBadgeText = "";
} else if (mBadgeNumber > mMaxBadgeNumber) {
mBadgeText = mExact ? String.valueOf(mBadgeNumber) : mMaxBadgeNumber + "+";
} else if (mBadgeNumber > 0) {
mBadgeText = String.valueOf(mBadgeNumber);
} else {
mBadgeText = null;
}
measureText();
invalidate();
return this;
}

Try editing it in your source since apparently the developer ditched the project 2 years ago

from badgeview.

Related Issues (20)

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.