我試圖讓TextView有兩段文字,一段對着最左側和一對最左側對齊。我可以在這兩個詞之間留出空格,但我想知道是否有更好的技術?Android TextView將文本對齊到右側和左側
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_common"
android:id="@+id/LinearLayout0123">
<TextView
android:layout_width="300dp"
android:layout_height="40dp"
android:textColor="@color/Black"
android:textStyle="bold"
android:textSize="15dp"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:background="@drawable/selector_social_facebook_twitter"
android:text="Right Text Left Text" />
</LinearLayout>
但是,當你想使用後退按鈕清除輸入的文本,因爲當過你專注編輯文本將其設置光標在輸入文本的乞討它不能正常工作。 –