当前位置:   article > 正文

安卓入门:启动界面制作_制作一个android操作系统介绍界面代码

制作一个android操作系统介绍界面代码

由于刚刚开始学安卓,很多东西都不懂。昨天就启动界面制作进行了学习和大家分享一下。

启动界面实际上也是一个Activity,我们在layout中进行定义。
1.新建一个screen.xml,代码如下图所示:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <LinearLayout
  3. android:id="@+id/loginRoot"
  4. xmlns:android="http://schemas.android.com/apk/res/android"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:orientation="vertical"
  8. android:background="@drawable/welcome">
  9. </LinearLayout>

2.新建一个类,继承于activity:

  1. package com.example.uidesgin;
  2. import android.app.Activity;
  3. import android.app.Dialog;
  4. import android.content.Intent;
  5. import android.os.Bundle;
  6. import android.os.Handler;
  7. import android.view.Window;
  8. public class ActSplashScreen extends Activity {
  9. @Override
  10. protected void onCreate(Bundle savedInstanceState) {
  11. // TODO Auto-generated method stub
  12. super.onCreate(savedInstanceState);
  13. // 去掉标题
  14. requestWindowFeature(Window.FEATURE_NO_TITLE);
  15. setContentView(R.layout.actsplashscreen);
  16. // 闪屏核心代码
  17. new Handler().postDelayed(new Runnable() {
  18. @Override
  19. public void run() {
  20. // TODO Auto-generated method stub
  21. Intent intent = new Intent(ActSplashScreen.this,
  22. MainActivity.class);
  23. // 从启动动画切换到主界面
  24. startActivity(intent);
  25. ActSplashScreen.this.finish();// 结束动画
  26. }
  27. }, 3000);
  28. }
  29. }

3.最后记得在androidMainifest.xml中添加activity配置。并且设置成第一个启动
  1. <activity
  2. android:name="com.example.uidesgin.ActSplashScreen"
  3. android:configChanges="orientation|keyboardHidden|screenSize"
  4. android:label="@string/app_name"
  5. android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
  6. <intent-filter>
  7. <action android:name="android.intent.action.MAIN" />
  8. <category android:name="android.intent.category.LAUNCHER" />
  9. </intent-filter>
  10. </activity>

这样我们的启动动画就制作完成了。


下面是DEMO的下载

DEMO.RAR


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/144640
推荐阅读