您的位置:首页 > 其它

空间在布局中的对齐

2015-07-01 16:54 357 查看
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/container"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context="com.example.uilayouttest.MainActivity"

    tools:ignore="MergeRootFrame" >

    <Button

        android:id="@+id/button1"

        android:layout_gravity="top"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="Button" />

    <Button

        android:id="@+id/button2"

        android:layout_gravity="center"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="Button" />

    <Button

        android:id="@+id/button3"

        android:layout_gravity="bottom"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="Button" />

</LinearLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: