GithubHelp home page GithubHelp logo

facebook / textlayoutbuilder Goto Github PK

View Code? Open in Web Editor NEW
1.5K 49.0 141.0 529 KB

An Android library that allows you to build text layouts more easily.

Home Page: https://facebook.github.io/TextLayoutBuilder

License: Apache License 2.0

Java 94.71% Kotlin 5.29%

textlayoutbuilder's Issues

Why infinity loop?

while (true) {
        try {
          layout = StaticLayoutHelper.make(
              mParams.text,
              0,
              mParams.text.length(),
              mParams.paint,
              width,
              mParams.alignment,
              mParams.spacingMult,
              mParams.spacingAdd,
              mParams.includePadding,
              mParams.ellipsize,
              width,
              numLines,
              mParams.textDirection);
        } catch (IndexOutOfBoundsException e) {
          // Workaround for https://code.google.com/p/android/issues/detail?id=35412
          if (!(mParams.text instanceof String)) {
            // remove all Spannables and re-try
            Log.e("TextLayoutBuilder", "Hit bug #35412, retrying with Spannables removed", e);
            mParams.text = mParams.text.toString();
            continue;
          } else {
            // If it still happens with all Spannables removed we'll bubble the exception up
            throw e;
          }
        }

        break;
      }

Gradle fails to resolve version 1.3.1

Hello!

Maybe this is intentional but.. did someone forget to upload version 1.3.1?

The readme, the website and the commits say the latest version is 1.3.1, but I get Failed to resolve: com.facebook.fbui.textlayoutbuilder:textlayoutbuilder:1.3.1 when I try to sync my project.

Thanks!

Set alignment is not work

I use library 1.2.0.
The alignment always is ALIGN_NORMAL
This is my code.
screenshot_20180131-103849

And I see the setTextAppearance(context, resId) in website , but I can't use in TextLayoutBuilder.

Thank you.

No support for letter spacing

I can see this project is being used in Litho as well. From there, I came searching here for letter spacing support as it is in Android TextView.
Are there any plans to this in future?

Layout on background thread?

Is code like the below thread safe?

Layout layout = new TextLayoutBuilder()
    .setTextAppearance(context, resId)
    .setText("TextLayoutBuilder makes life easy")
    .setWidth(400)
    .layout();

My understanding is that Litho does background layout and measurement. And Litho uses TextLayoutHelper under the hood for some things. So I'm wondering if this library can be used to write a custom view that does all its measurement and layout on a background thread (assuming I already know max size).

the hide constructor method of android.text.StaticLayout

android.text.StaticLayout

the constructor method with 'int maxLines' param is a hide method.
Does StaticLayoutProxy.java can new StaticLayout object with the 'maxLines' directly?

    /**
     * @hide
     */
    public StaticLayout(CharSequence source, int bufstart, int bufend,
                        TextPaint paint, int outerwidth,
                        Alignment align, TextDirectionHeuristic textDir,
                        float spacingmult, float spacingadd,
                        boolean includepad,
                        TextUtils.TruncateAt ellipsize, int ellipsizedWidth, int maxLines) {

Creation of StaticLayout

When you create the layout you try to handle the different scenario. Each of case happens of the specific version of API?

Usage 3 the method onDraw is wrong

in usage 3
it is wrong that the first line of the method of onDraw ?
it has a error of java.lang.StackOverflowError.
it should be super.onDraw(canvas);

Restrictions on non-SDK interfaces

#3: Linking greylist-max-p Landroid/text/StaticLayout;->(Ljava/lang/CharSequence;IILandroid/text/TextPaint;ILandroid/text/Layout$Alignment;Landroid/text/TextDirectionHeuristic;FFZLandroid/text/TextUtils$TruncateAt;II)V use(s):
Lcom/facebook/fbui/textlayoutbuilder/proxy/StaticLayoutProxy;->create(Ljava/lang/CharSequence;IILandroid/text/TextPaint;ILandroid/text/Layout$Alignment;FFZLandroid/text/TextUtils$TruncateAt;IILandroidx/core/text/TextDirectionHeuristicCompat;)Landroid/text/StaticLayout; (2 occurrences)

the constructor method is Deprecated, should be instead of Builder.

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.