Android四种布局方式

线性布局

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <Button
                android:id="@+id/button"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="7"
                android:text="Button"
                android:textAllCaps="false"
                />

            <ProgressBar
                android:id="@+id/process_bar"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:max="100" />
        </LinearLayout>

posted @ 2018-10-31 12:55  灰太狼的喜羊羊  阅读(218)  评论(0编辑  收藏  举报