Giter Site home page Giter Site logo

Comments (1)

aci9evil avatar aci9evil commented on August 15, 2024

private static void justify(final TextView textView) {

    final AtomicBoolean isJustify = new AtomicBoolean(false);

    final String textString = textView.getText().toString();

    final TextPaint textPaint = textView.getPaint();

    final SpannableStringBuilder builder = new SpannableStringBuilder();

    textView.post(() -> {

        if (!isJustify.get()) {

            final int lineCount = textView.getLineCount();
            final int textViewWidth = textView.getWidth() - 1;

            for (int i = 0; i < lineCount; i++) {

                int lineStart = textView.getLayout().getLineStart(i);
                int lineEnd = textView.getLayout().getLineEnd(i);

                String lineString = textString.substring(lineStart, lineEnd);

                if (i == lineCount - 1) {
                    builder.append(new SpannableString(lineString));
                    break;
                }

                String trimSpaceText = lineString.trim();
                String removeSpaceText = lineString.replaceAll(" ", "");

                float removeSpaceWidth = textPaint.measureText(removeSpaceText);
                float spaceCount = trimSpaceText.length() - removeSpaceText.length();

                float eachSpaceWidth = (textViewWidth - removeSpaceWidth) / spaceCount;

                SpannableString spannableString = new SpannableString(lineString);
                for (int j = 0; j < trimSpaceText.length(); j++) {
                    char c = trimSpaceText.charAt(j);
                    if (c == ' ') {
                        Drawable drawable = new ColorDrawable(0x00ffffff);
                        drawable.setBounds(0, 0, (int) eachSpaceWidth, 0);
                        ImageSpan span = new ImageSpan(drawable);
                        spannableString.setSpan(span, j, j + 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                    }
                }

                builder.append(spannableString);
            }

            textView.setText(builder);
            isJustify.set(true);
        }
    });
}

from android-expandabletextview.

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.