Android Justified TextView
Default android textviews doesn't support justified text alignment. This Custom View is support 'only' justified text.
Android varsayılan TextView elementi her iki yana hizalanmış yazı özelliğini desteklemiyor. Bu View ile sadece her iki yana yaslanmış yazı özelliğini kullanabilirsiniz.
JustifiedTextView jtv= new JustifiedTextView(getApplicationContext(), "Lorem ipsum dolor sit amet... ");
LinearLayout place = (LinearLayout) findViewById(R.id.book_profile_content);
place.addView(jtv);
This source code is licensed under MIT License.