Я показываю HTML-код в WebView. Кто-нибудь может сказать мне, как выровнять текст в этом HTMl как слева, так и справа?
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
android:id="@+id/al1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:id="@+id/tv1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="About Us : Work Under Progress.."
android:textSize="20sp"
android:textStyle="bold"
android:background="#ffffff"
android:textColor="#ff000000"
android:gravity="right"
android:layout_x="0px"
android:layout_y="0px">
</TextView>
</AbsoluteLayout>