欢迎界面

package com.gcntc.news_editing_offline.ui;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;

import com.gcntc.news_editing_offline.R;

/**
* 2014-4-23下午2:59:36 Zjx
*/
public class Welcome extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.welcome);
new Handler().postDelayed(new Runnable() {

@Override
public void run() {
// TODO Auto-generated method stub
Intent intent = new Intent(Welcome.this, Login.class);
startActivity(intent);
finish();
}
}, 1500);
}

}

猜你喜欢

转载自15050855750.iteye.com/blog/2075314
今日推荐