2016年6月19日 星期日

RelativeLayout由右向左橫向排列, 最左邊的 textview 文字靠左的方法

使用 RelativeLayout , 由右向左橫向排列, 但要讓最左邊的
textview 文字可以靠左的方法

就是不要以下樣式:

|                 文字文字文字文字 button1 button2|

而是要這樣:

|文字文字文字文字                  button1 button2|



關鍵是利用一個 FrameLayout 套在 textview的外面即可


           android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

                    android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_toLeftOf="@+id/btnAdd">

                            android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingLeft="5dp"
                android:text="@string/strSupport"
                android:textSize="14sp">

       


       

  © Blogger templates Psi by Ourblogtemplates.com 2008

Back to TOP