Android四种布局方式

落花踏尽游何处,笑入胡姬酒肆中。这篇文章主要讲述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四种布局方式

文章图片


    推荐阅读