RelativeLayout由右向左橫向排列, 最左邊的 textview 文字靠左的方法
使用 RelativeLayout , 由右向左橫向排列, 但要讓最左邊的
textview 文字可以靠左的方法
就是不要以下樣式:
| 文字文字文字文字 button1 button2|
而是要這樣:
|文字文字文字文字 button1 button2|
關鍵是利用一個 FrameLayout 套在 textview的外面即可
android:layout_height="wrap_content"
android:orientation="horizontal">
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/btnAdd">
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:text="@string/strSupport"
android:textSize="14sp">