当前位置: 代码迷 >> Android >> 开发一个新的android界面、界面跳转 看图学Android-Android 开发实例教程3、四
  详细解决方案

开发一个新的android界面、界面跳转 看图学Android-Android 开发实例教程3、四

热度:76   发布时间:2016-04-28 01:17:28.0
开发一个新的android界面、界面跳转 看图学Android---Android 开发实例教程三、四

Android实例图解教程目录

http://blog.csdn.net/wyx100/article/details/45061407

一.课程功能

本课程讲述建立一个新界面和界面切换(从界面一切换到界面二)。

二.课程界面

界面一(启动界面)

 

界面二(主界面)

三.工作流程

完成页面切换需要2个过程:

1.建立一个工程,见第二节。

http://blog.csdn.net/wyx100/article/details/45248209

可以在该项目基础继续开发。

2.建立开机界面

先引入资源图片

建立开机界面layout的xml文件

编辑start.xml文件,引入布局

编辑start.xml文件,引入图片视图(存放图片的视图,Images Vies)

引入图片

界面一(启动界面)效果图

start.xml文件源代码

<?xml version="1.0" encoding="UTF-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <ImageView        android:id="@+id/imageView1"        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:src="@drawable/bg" /></LinearLayout>

3.编写开机界面的java类

StartActivity.java

开机界面显示三秒后,跳转到主界面,页面跳转由Intent完成。

package com.example.helloword;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.os.Handler;import android.widget.ImageView;public class StartActivity extends Activity {	/** Called when the activity is first created. */	 private final int SPLASH_DISPLAY_LENGHT = 3000; //延迟三秒   	@Override	public void onCreate(Bundle savedInstanceState) {	    super.onCreate(savedInstanceState);	    setContentView(R.layout.start);		    new Handler().postDelayed(new Runnable(){ 	    	  	        @Override 	        public void run() { 	            Intent mainIntent = new Intent(StartActivity.this,MainActivity.class); 	            StartActivity.this.startActivity(mainIntent); 	            StartActivity.this.finish(); 	        } 	           	       }, SPLASH_DISPLAY_LENGHT); 	}}

界面切换

主要代码

     new Handler().postDelayed(new Runnable(){                  @Override          public void run() {              Intent mainIntent = new Intent(StartActivity.this,MainActivity.class); //界面跳转定义             StartActivity.this.startActivity(mainIntent); //启动界面跳转              StartActivity.this.finish(); //界面跳转完成后,消除界面一         }                     }, SPLASH_DISPLAY_LENGHT); //界面一显示时长 

4.修改启动配置文件(AndroidManifest.xml)为从启动界面开始,进入启动界面,会自动执行启动界面的java代码,完成界面切换。

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.example.helloword"    android:versionCode="1"    android:versionName="1.0" >    <uses-sdk        android:minSdkVersion="8"        android:targetSdkVersion="18" />    <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme" >        <activity            android:name="com.example.helloword.StartActivity"            android:label="@string/app_name" >            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>                        <activity android:name=".MainActivity"/>    </application></manifest>

5.完成项目,启动运行。如何运行,见第二节,第一个Android项目。

  相关解决方案