Android开发技巧(好好利用layout_weight属性)
问题:如何将一个Button放置在布局中间并将其宽度设为其parent的50%?
</span>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:layout_width= "fill_parent" android:layout_height= "fill_parent" android:background= "#ffffff" android:gravity= "center" android:orientation= "horizontal" android:weightSum= "1" ><!--1.添加android:weightSum属性--> <Button android:layout_width ="0dp"<!--2.将Button的layout_width设为0dp--> android:layout_height ="wrap_content" android:layout_weight ="0.5"<!--3.确保其占用了50%的可用空间--> android:text ="@string/activity_main_click_me" /> </LinearLayout>