Android四种布局方式

Posted 路漫求索

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>

以上是关于Android四种布局方式的主要内容,如果未能解决你的问题,请参考以下文章

Android四种布局方式

以编程方式将片段添加到android中的框架布局

Android-基本控件和详解四种布局方式

Android 动画布局和视图

android片段表格布局

Android实现滑动的四种方式