android studio 编写学生课程表布局代码
时间: 2023-07-12 19:42:47 浏览: 126
以下是一个简单的学生课程表布局代码:
```xml
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- 表头 -->
<TableRow>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="时间"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期一"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期二"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期三"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期四"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期五"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期六"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="星期日"
android:textAlignment="center"/>
</TableRow>
<!-- 第一节课 -->
<TableRow>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="8:00-10:00"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="语文"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="数学"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="英语"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
</TableRow>
<!-- 第二节课 -->
<TableRow>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="10:00-12:00"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="数学"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="语文"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="英语"
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text=""
android:textAlignment="center"/>
</TableRow>
<!-- 其他课程... -->
</TableLayout>
```
这个布局使用了一个 `TableLayout` 和多个 `TableRow` 来实现课程表的布局。每个 `TableRow` 包含了一行课程信息,每个课程信息使用了多个 `TextView` 来显示。你可以根据自己的需求,修改这个布局的代码。
阅读全文