Coder Social home page Coder Social logo

szn0212 / ellipsizetextview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dinuscxj/ellipsizetextview

0.0 2.0 0.0 4.87 MB

The EllipsizeTextView extends TextView, support omit (Ellipsize/Ellipsis) redundant characters in multiple lines situtation.

Java 100.00%

ellipsizetextview's Introduction

EllipsizeTextView

The EllipsizeTextView offers a lot of flexibility when it comes to causing words in the text that are longer than the view is wide to be omitted instead of broken in the middle.

The EllipsizeTextView is powerful and flexible. You do not need to worry about the emoji truncated cause garbled, and you also do not need to worry about the text be affected by the class CharacterStyle and its subclass truncated cause unexpected result.

The EllipsizeTextView extends TextView, it supports multiple lines omit redundant characters, but the method {@link EllipsizeTextView#setMaxLines(int)} will be always needed to call. besides, you can call the method {@link EllipsizeTextView#setEllipsizeText(CharSequence, int)} to custom the content, style, and index(in the reverse order) of the ellipsis.

Preview

Installation

Add the following dependency to your build.gradle file:

    dependencies {
        compile 'com.dinuscxj:ellipsizetextview:1.0.0'
    }

Usage

You can specify the attributes from a layout XML like:

    <com.dinuscxj.ellipsize.EllipsizeTextView
        android:id="@+id/tv_ellipsize3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:layout_marginTop="16dp"
        app:ellipsize_index="8"
        app:ellipsize_text="..."
        android:maxLines="2" />

Or from code like:

        mEllipsizeText.setMaxLines(2);
        mEllipsizeText.setEllipsizeText(ellipsizeText, 8);
        mEllipsizeText.setText(R.string.long_text);

License

Copyright 2015-2019 dinus

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

ellipsizetextview's People

Watchers

James Cloos avatar szn0212 avatar

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.