要想让您的控件水平居中或垂直居中其实很简单,只要在控件的上一级中设置【androID:gravity="center"】属性即可
如:
<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:gravity="center" androID:background="#000000" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" > <ImageVIEw androID:ID="@+ID/logo" androID:src="@drawable/logo" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" /></linearLayout>
这样一个ImageVIEw控件就乖乖的待在你选定区域的正中间了。 gravity的属性值还有很多,可以单独设置水平或垂直居中。大家可以查看相应的文档,或使用Eclipse的提示功能快速查看。
我们来看一个实例,如果你想实现这样的布局,两个按钮居中,该怎样做?
比较容易实现的是linearLayout布局,当然如果换成relativeLayout同样也可以实现。
这里简单说一下用relativeLayout布局如何实现,首先需找中心点,然后以这个中心点为参照物即可实现。接下来看一下更容易实现的linearLayout布局的实现。
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:gravity="center"> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ID="@+ID/start_server" androID:text="Start" /> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ID="@+ID/stop_server" androID:text="Stop" /></linearLayout>
如果现在需求改变了,中间只需要一个button即可,那么实现起来很简单,只需要将上面的其中一个button标签删除即可,但是有些人这么去实现
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="match_parent" androID:layout_height="match_parent"> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ID="@+ID/start_server" androID:layout_gravity="center" androID:text="Start" /></linearLayout>
这么实现显然不能居中,虽然在button标签指定了androID:layout_gravity="center"但是貌似布局不领情,为啥?
原因很简单,linearLayout只能有一个方向,要么Vertical,要么Horizontal,完全不会领layout_gravity这个属性的情,所以上面的实现只有这么一个结果
如果改成水平方向的布局
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="horizontal" androID:layout_wIDth="match_parent" androID:layout_height="match_parent"> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ID="@+ID/start_server" androID:layout_gravity="center" androID:text="Start" /></linearLayout>
会变成这样的结果
按照上面的理论也就能想通了,所以androID:layout_gravity="center"这个属性虽然linearLayout也具有,但是却虚晃一q,真正其作用的还是其本身的属性androID:gravity="center",当然如果想一探究竟,为啥不起作用,可以从linearLayout这个布局的源代码看起,这里不再赘述。
总结以上是内存溢出为你收集整理的Android App中使用LinearLayout进行居中布局的实例讲解全部内容,希望文章能够帮你解决Android App中使用LinearLayout进行居中布局的实例讲解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)