在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中常用的布局方式,你可以根據需要選擇合適的布局來設計你的頁面。