RelativeLayout不能居中的解决的方法
Posted clnchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RelativeLayout不能居中的解决的方法相关的知识,希望对你有一定的参考价值。
在LinearLayout中有个让元素居中的办法就是。比方在LinearLayout里有个TextView.设置TextView的gravity能够让其居中。
而在Realative里设置这个不起作用。困扰了我挺长时间。事实上在Realative里有个替代的方法。就是设置子组件的android:layout_centerHorizontal="true"
就ok了。
如:
<RelativeLayout android:layout_width="match_parent" android:layout_height="200dp" android:id="@+id/cc_item_topLayout" > <ImageView android:layout_width="50dp" android:layout_height="50dp" android:id="@+id/cc_item_avatar" android:src="@drawable/touxiang" android:background="@drawable/btn_myborder" android:layout_marginTop="30dp" android:layout_centerHorizontal="true" /> </RelativeLayout>
以上是关于RelativeLayout不能居中的解决的方法的主要内容,如果未能解决你的问题,请参考以下文章
ListView内嵌套RelativeLayout中的垂直居中
在 RelativeLayout 中将多个项目居中而不将它们放入容器中?
安卓开发中ScrollView不能用RelativeLayout的解决方案