添加启动页#
2021/5/7
实验内容
1、为学号后一位同学编写一个简单app。
新建一个emptyactivity
在layout的activity_main.xml中添加如下代码
1 <LinearLayout
2 android:layout_width="match_parent"
3 android:layout_height="match_parent"
4 android:orientation="vertical">
5
6 <TextView
7 android:layout_width="wrap_content"
8 android:layout_height="wrap_content"
9 android:text="@string/str1"
10 android:textSize="40sp"/>