如何添加应用程序预装载/启动屏幕/飞溅屏幕到我的PhoneGap Android应用程序

前端之家收集整理的这篇文章主要介绍了如何添加应用程序预装载/启动屏幕/飞溅屏幕到我的PhoneGap Android应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经使用手机Gap创建了一个 Android应用程序.它的工作正常.如何在我的应用程序中添加一个预加载器映像.现在它在加载应用程序时显示一个白页.

帮助高度赞赏,
谢谢,
VKS.

解决方法

如果你的意思是预装载图像有Splash屏幕,请参考以下代码;

对于PhoneGap:

public class MyDefaultActivity extends Activity {

   public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        super.setIntegerProperty("splashscreen",R.drawable.splash); // Displays the splash screen for android
        super.loadUrl("file:///android_asset/www/index.html",3000); // Second parameter is duration for delay of splash screen
    }
}

对于Android Native应用程序:

public class MySplashScreen extends Activity {
    private CountDownTimer lTimer;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.splashscreen); // Contains only an LinearLayout with backround as image drawable

        lTimer = new CountDownTimer(5000,1000) {
            public void onFinish() {
                closeScreen();
            }
            @Override
            public void onTick(long millisUntilFinished) {
                // TODO Auto-generated method stub
            }
        }.start();
    }

    private void closeScreen() {
        Intent lIntent = new Intent();
        lIntent.setClass(this,MyLauncherActivity.class);
        startActivity(lIntent);
        finish();
    }
}

确保一个名为splash.png的文件作为res / drawable-hdpi / splash.png(RGBA)存在.

原文链接:https://www.f2er.com/android/310756.html

猜你在找的Android相关文章