在android的app和游戏的应用中,都会有个开场场景,老外管这个叫splash。
现在就编写个简单的SplashActivity
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.ImageView;
public class SplashActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
ImageView splashImg = (ImageView) findViewById(R.id.splash_image);
splashImg.postDelayed(new Runnable() {//这里利用了View的postDelayed
public void run() {
Intent intent = new Intent();
intent.setClass(SplashActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
}, 1000);
}
}
下面是splash.xml,layout 文件了
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/splash_background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:scaleType="fitXY"
android:src="@drawable/splash_floor" />
<ImageView
android:id="@+id/splash_image"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:scaleType="fitXY"
android:src="@drawable/splash_logo" />
<ImageView
android:id="@+id/splash_foot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10.0dip"
android:src="@drawable/splash_logo_foot" />
</RelativeLayout>
分享到:
相关推荐
12. **发布流程**:在完成开发后,开发者需要遵循Google Play的开发者政策,对App进行签名、优化APK大小、编写应用描述和截图,然后上传到Google Play Store供用户下载。 以上就是基于描述的Android电影票购票App...
1. **Android SDK**:掌握Android开发的基础,包括Activity、Intent、Fragment、BroadcastReceiver等核心组件的使用。 2. **用户界面设计**:使用XML布局文件创建直观、友好的用户界面,可能包括电影列表、详情页、...
6. **Activity与Fragment管理**:引导页完成后,通常会跳转到主界面,涉及Activity的生命周期管理和Fragment的使用。 7. **版本控制**:源码可能包含了版本控制信息(如Git),帮助开发者追踪代码变更。 【压缩包子...
3. 用户引导:对于功能复杂的App,欢迎画面可以包含简单的操作指南或新特性介绍。 二、创建基本布局 1. 在`res/layout`目录下创建一个新的XML布局文件,例如`splash_activity.xml`。在此文件中,你可以定义一个全屏...
本示例中的"安卓Android源码——模仿乐动力介绍页面第一屏动画效果.zip"提供了一个具体的案例,展示了如何在Android应用中实现类似乐动力APP的开场动画效果。这个压缩包包含了一个名为"LedongliDemo"的项目,它将...