今天是团队冲刺的第一天:目前登录动画以及登录注册流程的完成,刚刚写了一个简单的动画(图片形式限制时间自动跳转)demo图,左边为打开的时候,等待一定时间就会自动跳转到右边的页面也就是新建项目的初始页面
涉及的就是一个简单的splash动画的小应用,根据下面的步骤就可以完成,附上项目结构图,以及主要修改的地方都已经标明
1.drawable下放一张图片,我的叫guide
2.layout新建一个activity_splash.xml文件实现布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/loadImage"
android:scaleType="fitXY"
android:src="@drawable/guide">
</ImageView>
</LinearLayout>
里面有这两行android:id="@+id/loadImage" android:src="@drawable/guide">其中guide问你的图片名字,loadlmage是一个id属性值