本文主要是介绍RelativeLayout平分父容器宽度(Percentage width in a RelativeLayout),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
http://stackoverflow.com/questions/4961355/percentage-width-in-a-relativelayout
在Android中,使用LinearLayout布局要实现控件平分屏幕依托:layout_weight属性。
<RelativeLayout android:layout_width="fill_parent"android:layout_height="wrap_content"><View android:id="@+id/strut"android:layout_width="0dp"android:layout_height="0dp" android:layout_centerHorizontal="true"/><Buttonandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_alignRight="@id/strut"android:layout_alignParentLeft="true"android:text="Left"/> <Button android:layout_width="0dp"android:layout_height="wrap_content"android:layout_alignLeft="@id/strut"android:layout_alignParentRight="true"android:text="Right"/>
</RelativeLayout>
http://pcq019.blog.163.com/blog/static/12460232320122155651430/
这篇关于RelativeLayout平分父容器宽度(Percentage width in a RelativeLayout)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!