GithubHelp home page GithubHelp logo

Comments (5)

JordanMarshall avatar JordanMarshall commented on July 28, 2024

I can confirm this (Android 4.4, Nexus 5). I am currently working around the issue by calling updatePaddingForBoldDate() on the offending ZeroTopPaddingTextView.

from android-betterpickers.

niko001 avatar niko001 commented on July 28, 2024

Thanks, @theshadowbelow, this fixed it for me, as well!

from android-betterpickers.

nealsanche avatar nealsanche commented on July 28, 2024

I also found this to be the case in HmsView.java and had to make the following modifications:

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();

        mHoursOnes = (ZeroTopPaddingTextView) findViewById(R.id.hours_ones);
        mMinutesTens = (ZeroTopPaddingTextView) findViewById(R.id.minutes_tens);
        mMinutesOnes = (ZeroTopPaddingTextView) findViewById(R.id.minutes_ones);
        mSecondsTens = (ZeroTopPaddingTextView) findViewById(R.id.seconds_tens);
        mSecondsOnes = (ZeroTopPaddingTextView) findViewById(R.id.seconds_ones);
        if (mHoursOnes != null) {
            mOriginalHoursTypeface = mHoursOnes.getTypeface();
            mHoursOnes.updatePaddingForBoldDate();
        }
        if (mMinutesTens != null) {
            mMinutesTens.updatePaddingForBoldDate();
        }
        if (mMinutesOnes != null) {
            mMinutesOnes.updatePaddingForBoldDate();
        }
        // Set the lowest time unit with thin font (excluding hundredths)
        if (mSecondsTens != null) {
            mSecondsTens.setTypeface(mAndroidClockMonoThin);
            mSecondsTens.updatePadding();
        }
        if (mSecondsOnes != null) {
            mSecondsOnes.setTypeface(mAndroidClockMonoThin);
            mSecondsOnes.updatePadding();
        }
    }

from android-betterpickers.

inteist avatar inteist commented on July 28, 2024

That seemed to resolve the issue for me (had to add am/pm as well to be able to call the updapaddingforbold)

public void setTime(int hoursTensDigit, int hoursOnesDigit, int minutesTensDigit,
        int minutesOnesDigit) {
    if (mHoursTens != null) {
        // Hide digit
        if (hoursTensDigit == -2) {
            mHoursTens.setVisibility(View.INVISIBLE);
        } else if (hoursTensDigit == -1) {
            mHoursTens.setText("-");
            mHoursTens.setTypeface(mAndroidClockMonoThin);
            mHoursTens.setEnabled(false);
            mHoursTens.updatePadding();
            mHoursTens.setVisibility(View.VISIBLE);
        } else {
            mHoursTens.setText(String.format("%d", hoursTensDigit));
            mHoursTens.setTypeface(mOriginalHoursTypeface);
            mHoursTens.setEnabled(true);
            mHoursTens.updatePaddingForBoldDate();
            mHoursTens.setVisibility(View.VISIBLE);
        }
    }
    if (mHoursOnes != null) {
        if (hoursOnesDigit == -1) {
            mHoursOnes.setText("-");
            mHoursOnes.setTypeface(mAndroidClockMonoThin);
            mHoursOnes.setEnabled(false);
            mHoursOnes.updatePadding();
        } else {
            mHoursOnes.setText(String.format("%d", hoursOnesDigit));
            mHoursOnes.setTypeface(mOriginalHoursTypeface);
            mHoursOnes.setEnabled(true);
            mHoursOnes.updatePaddingForBoldDate();
        }
    }

    if (mAMPMLabel != null) {
        mAMPMLabel.updatePaddingForBoldDate();
    }

    if (mMinutesTens != null) {
        if (minutesTensDigit == -1) {
            mMinutesTens.setText("-");
            mMinutesTens.setEnabled(false);
        } else {
            mMinutesTens.setEnabled(true);
            mMinutesTens.setText(String.format("%d", minutesTensDigit));
        }
    }
    if (mMinutesOnes != null) {
        if (minutesOnesDigit == -1) {
            mMinutesOnes.setText("-");
            mMinutesOnes.setEnabled(false);
        } else {
            mMinutesOnes.setText(String.format("%d", minutesOnesDigit));
            mMinutesOnes.setEnabled(true);
        }
    }
}

from android-betterpickers.

derekbrameyer avatar derekbrameyer commented on July 28, 2024

Hi all, sorry for the late response but I have fixed this in the latest 1.5.2 release!

from android-betterpickers.

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.