android开发之欢迎界面的小例子

cgweijiy6

cgweijiy6

2016-02-19 09:26

今天图老师小编给大家精心推荐个android开发之欢迎界面的小例子教程,一起来看看过程究竟如何进行吧!喜欢还请点个赞哦~

首先你得写好xml文件,这也是最主要的。

然后,在activity中加入一个线程,延时2秒,用来跳转到主界面。

activity中线程代码如下:(顺便检测一下网络是否打开)

[java]

代码如下:

@Override
    protected void onStart() {
        super.onStart();
        if(SPAN style="COLOR: #ff0000"isNetworkConnected()/SPAN){
            new Thread(){
                @Override
                public void run() {
                    try {
                        Thread.sleep(2000);
                        Intent intent = new Intent(SPAN style="COLOR: #ff0000"SplashActivity.this/SPAN,SPAN style="COLOR: #ff0000"CompusAssistMain.class/SPAN);
                        startActivity(intent);
                        finish();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }

                }
            }.start();
        }else{
            //弹出对话框 让用户设置网络 
            AlertDialog.Builder builder = new Builder(this);
            builder.setTitle("设置网络");
            builder.setMessage("网络错误请设置网络");
            builder.setPositiveButton("设置网络", new OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    Intent intent = new Intent();
                    intent.setClassName(SPAN style="COLOR: #ff6666""com.android.settings"/SPAN, SPAN style="COLOR: #ff6666""com.android.settings.WirelessSettings"/SPAN);
                    startActivity(intent);
                }
            });
            builder.setNegativeButton("取消", new OnClickListener() {

                public void onClick(DialogInterface dialog, int which) {
                    finish();
                }
            });
            builder.create().show();
        }
    }

@Override
 protected void onStart() {
  super.onStart();
  if(isNetworkConnected()){
   new Thread(){
    @Override
    public void run() {
     try {
      Thread.sleep(2000);
      Intent intent = new Intent(SplashActivity.this,CompusAssistMain.class);
      startActivity(intent);
      finish();
     } catch (InterruptedException e) {
      e.printStackTrace();
     }

    }
   }.start();
  }else{
   //弹出对话框 让用户设置网络
   AlertDialog.Builder builder = new Builder(this);
   builder.setTitle("设置网络");
   builder.setMessage("网络错误请设置网络");
   builder.setPositiveButton("设置网络", new OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
     Intent intent = new Intent();
     intent.setClassName("com.android.settings", "com.android.settings.WirelessSettings");
     startActivity(intent);
    }
   });
   builder.setNegativeButton("取消", new OnClickListener() {

    public void onClick(DialogInterface dialog, int which) {
     finish();
    }
   });
   builder.create().show();
  }
 }检测网络的类isNetWorkConnected():


[java]
代码如下:

SPAN style="WHITE-SPACE: pre" /SPAN/**
     * 判断系统的网络是否可用
     * @return
     */
    private boolean isNetworkConnected(){
        ConnectivityManager cm =    (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
        NetworkInfo info =cm.getActiveNetworkInfo();
        if(info!=null&&info.isConnected()){
            return true;
        }else {
            return false ;
        }
    

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)

 /**
  * 判断系统的网络是否可用
  * @return
  */
 private boolean isNetworkConnected(){
  ConnectivityManager cm = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
  NetworkInfo info =cm.getActiveNetworkInfo();
  if(info!=null&&info.isConnected()){
   return true;
  }else {
   return false ;
  }


这样就完成了一个欢迎界面,给自已的应用加点色彩。当然还要添加配置在Manifest文件中
[html]
代码如下:

activity
            android:name="com.yan.compusassist.SplashActivity"
            android:label="@string/application_name"
            intent-filter
                action android:name="android.intent.action.MAIN" /
                category android:name="android.intent.category.LAUNCHER" /
            /intent-filter
        /activity

activity
            android:name="com.yan.compusassist.SplashActivity"
            android:label="@string/application_name"
            intent-filter
                action android:name="android.intent.action.MAIN" /
                category android:name="android.intent.category.LAUNCHER" /
            /intent-filter
        /activity


这样它就会打开应用,启动第一个activity 界面。

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)
展开更多 50%)
分享

猜你喜欢

android开发之欢迎界面的小例子

编程语言 网络编程
android开发之欢迎界面的小例子

Android屏蔽后退键的小例子

编程语言 网络编程
Android屏蔽后退键的小例子

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

android,不显示标题的方法小例子

编程语言 网络编程
android,不显示标题的方法小例子

Win7系统开机不显示欢迎界面的方法

电脑网络
Win7系统开机不显示欢迎界面的方法

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

Android用户界面开发之:TextView的使用实例

编程语言 网络编程
Android用户界面开发之:TextView的使用实例

VC界面的实现

C语言教程 C语言函数
VC界面的实现

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

深入理解final变量的初始化

深入理解final变量的初始化

List the Codec Files on a Computer

List the Codec Files on a Computer
下拉加载更多内容 ↓