在Android中,页面布局可以通过XML布局文件来设置。以下是一些常用的Android布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- 子视图 -->
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 子视图 -->
</RelativeLayout>
<GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:rowCount="2"
android:columnCount="2">
<!-- 子视图 -->
</GridLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 子视图 -->
</FrameLayout>
这些是Android中常用的布局方式,你可以根据需要选择合适的布局来设计你的页面。