Git Product home page Git Product logo

justify-textview-android's Introduction

Android supports 3 types of text alignment

  • Left
  • Right
  • Center

Somehow, the guys at Google thought that justified alignment was not necessary. But there can be many chances where you want to get your text justified. There are many ways available if you search for it. I found a really simple way to do it and believe me, it can't get simpler than this.

Just import the two files "TextJustifyUtils.java" and "TextViewEx.java" in your project.

Now, if you use normal textView like:-

        <TextView
                android:id="@+id/original"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/lorum_ipsum" />

Simply use

        <yourpackagename.TextViewEx
                android:id="@+id/changed"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/lorum_ipsum" />

Define a variable and set justify to be true,

TextViewEx changed = (TextViewEx) findViewById(R.id.changed);
changed.setText(getResources().getString(R.string.lorum_ipsum),true);

That's it. You can use all the properties of TextView class as it extends the same.

Just copy the sample project in your workspace and run it on your android device to see it in action.

Original ![before_image] (https://github.com/nikoo28/justify-textview-android/blob/master/screenshots/device-2014-10-20-012847.png)

Changed ![after-image] (https://github.com/nikoo28/justify-textview-android/blob/master/screenshots/device-2014-10-20-012904.png)

justify-textview-android's People

Contributors

nikoo28 avatar

Watchers

Muhammad Shihab Uddin 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.