您好,登錄后才能下訂單哦!
在android中的控件LinearLayout 中的android:gravity="center" 屬性,要么是居左、居右、居中對齊,android:gravity="right" 和 android:gravity="left" 并不能達到雙控件的左右兩端對齊,
要實現兩端對齊方式,要采用 中間增加一個控件的方式實現 ,并設置屬性android:layout_weight="1",原因是設置android:layout_weight="1",就把控件均分了。
具體的布局文件如下:
Xml代碼
<?xml version="1.0″ encoding="utf-8″?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="20dp"
android:background="#EFEFEF"
android:orientation="horizontal">
<Button
android:text="button1"
android:layout_marginLeft="4dp"
android:id="@+id/btnlogin_main"
android:layout_height="20dp"
android:layout_width="wrap_content"
android:textSize="12dp"
android:background="#EFEFEF"
android:textColor="#404040">
</Button>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Button
android:id="@+id/btnSetting_Main"
android:layout_marginRight="4dp"
android:layout_width="wrap_content"
android:layout_height="20dp"
android:text="button2"
android:textSize="12dp"
android:background="#EFEFEF"
android:textColor="#404040">
</Button>
</LinearLayout>
效果如圖:
實現兩個button按鈕 兩端對齊
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。