标签:
1。关于组件居中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:id="@+id/tv_title" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:text="个人中心" android:gravity="center" android:textSize="30px" android:background="#44cef6" /> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="4" android:gravity="center" > <ImageView android:id="@+id/img_me" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:src="@drawable/ic_launcher" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="5" > <GridView android:id="@+id/person_grid_view" android:layout_width="wrap_content" android:layout_height="wrap_content" android:numColumns="3" android:stretchMode="columnWidth"> </GridView> </LinearLayout> </LinearLayout>
标签:
原文地址:http://www.cnblogs.com/chenxiaomeng/p/5869515.html