码迷,mamicode.com
首页 > 其他好文 > 详细

控件水平或垂直居中在布局中的问题

时间:2014-07-22 22:51:35      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:android   http   width   io   问题   re   

直接在linearlayout中设置gravity属性,而不是在控件中设置。

另外设置weight的时候,最好让所有的控件处在一个布局中

 

<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>

控件水平或垂直居中在布局中的问题,布布扣,bubuko.com

控件水平或垂直居中在布局中的问题

标签:android   http   width   io   问题   re   

原文地址:http://www.cnblogs.com/lucky-star-star/p/3855464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!