/justify-textview-android

This is a simple implementation to get text in justified manner in any android application

Primary LanguageJava

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)