标签: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