android 欢迎界面

public class WelcomeActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.welcome);        Start();    }        public void Start() {                new Thread() {                        public void run() {                                try {                                        Thread.sleep(5500);                                } catch (InterruptedException e) {                                        e.printStackTrace();                                }                                Intent intent = new Intent();                                intent.setClass(WelcomeActivity.this, AiappActivity.class);                                startActivity(intent);                                finish();                        }                }.start();        }}


<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:background="@drawable/logo"    ></LinearLayout><?xml version="1.0" encoding="utf-8"?><AbsoluteLayout android:orientation="vertical"    android:id="@+id/tab1"    android:layout_width="fill_parent"    android:layout_height="fill_parent"  xmlns:android="http://schemas.android.com/apk/res/android"  android:background="@drawable/logo">      <WebView android:id="@+id/wv"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:layout_x="0.0dip"    android:layout_y="0.0dip"    android:layout_weight="1.0"     android:background="@drawable/logo"/></AbsoluteLayout>

更多相关文章

  1. Android(安卓)SDK Manager不能显示所有包的解决办法
  2. 第一章:第三节:Concurrency in Android
  3. Failed to fetch URL http://dl-ssl.google.com/android/reposit
  4. Mac Error Create Android(安卓)Project - “Errors running bui
  5. android应用去掉title bar 及全屏处理方法
  6. android界面布局
  7. Android(安卓)学习笔记--android――Activity学习
  8. ConstraintLayout 使用可视化的方式来编写Android应用程序的界面
  9. android studio最新sdk更新方法

随机推荐

  1. Android中完全退出当前应用系统
  2. android Intent 短信群发
  3. android上设置ftp服务器
  4. Android项目打包遇com.android.builder.i
  5. Android app升级完成以后自动重启自身App
  6. android中向通过contentProvider向数据库
  7. Android 多扩展布局ChipGroup使用
  8. react-native 禁止横屏
  9. android EasyPermissions 使用教程
  10. android中MVP模式(一)