Android常用布局

Android常用布局
       <LinearLayout 

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:orientation="horizontal"

        >

        <TextView 

            android:layout_width="50dp"

            android:layout_height="wrap_content"

            android:text="姓名:"

            />

        <EditText 

            android:layout_width="0dp"

            android:layout_height="wrap_content"

            android:layout_weight="1"

            />

        <Button 

            android:layout_width="60dp" 

            android:layout_height="wrap_content"

            android:text="提交"

            />

    </LinearLayout>
View Code

左 中 右
左右 长度固定

设置中间的  android:layout_weight="1" 表示,左右填充完后,剩余的由中间填充

你可能感兴趣的:(android)