Try to justify text but i am not able to do that i want to start text start an end at equal margin from both left and right side. How to do that?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:lineSpacingExtra="4dp"
android:layout_marginRight="3dp"
android:layout_marginLeft="3dp"
android:paddingBottom="20dp"
android:text="@string/about_us"
android:textColor="@color/black"
android:textSize="15sp"/>
</LinearLayout>