0

几天前,我发现了非常棒的教程:高级动画启动画面,我是 android 开发的新手,本教程对制作很棒的启动画面很有帮助..

但是我需要更多帮助来修改该代码,我需要在启动屏幕之后加载我的 webview 活动,如果可能的话,我想将启动屏幕作为我的 webview 预加载器,或者至少将 webview 活动作为后台活动,所以当启动画面出现时,我的 webview 不再需要太多时间来加载了..

我期望的顺序是这样的:
1. 用户单击/点击应用程序图标
2. animation_splashscreen 出现(但不仅等待 5000,而且还加载我的 webview)
3. (不再加载......然后......)我的 webview 出现

我试过它工作正常,但就像我加载了两次,在启动画面消失后,我的 web 视图出现了加载/进度条..

我的问题是,我可以将启动画面用作我的 webview 预加载器吗?所以在设备上完全加载webview后,启动画面将消失,然后直接打开webview(我的webview上不再加载)

请任何人一步一步地向我展示,因为我是 android 开发中非常非常非常新手.. 我尝试在 android 应用程序的 webview 中加载 url 时学习启动画面,但我不明白什么时候想要制作动画闪屏:(

这是我的代码:

在 SplashScreen.java 上

package com.yourname.main;

import android.app.Activity;
import android.content.Intent;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.view.Menu;
import android.view.MotionEvent;
import android.widget.ImageView;

public class SplashScreen extends Activity {

    /**
     * The thread to process splash screen events
     */
    private Thread mSplashThread;   

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Splash screen view
        setContentView(R.layout.splash);

        // Start animating the image
        final ImageView splashImageView = (ImageView) findViewById(R.id.SplashImageView);
        splashImageView.setBackgroundResource(R.drawable.flag);
        final AnimationDrawable frameAnimation = (AnimationDrawable)splashImageView.getBackground();
        splashImageView.post(new Runnable(){
            @Override
            public void run() {
                frameAnimation.start();             
            }           
        });


        final SplashScreen sPlashScreen = this;   

        // The thread to wait for splash screen events
        mSplashThread =  new Thread(){
            @Override
            public void run(){
                try {
                    synchronized(this){
                        // Wait given period of time or exit on touch
                        wait(5000);
                    }
                } 
                catch(InterruptedException ex){                 
                }

                finish();

                // Run next activity
                Intent intent = new Intent();
                intent.setClass(sPlashScreen, WebViewActivity.class);
                startActivity(intent);
                //stop();                   
            }
        };

        mSplashThread.start();

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu){
        super.onCreateOptionsMenu(menu);
        return false;
    } 

    /**
     * Processes splash screen touch events
     */
    @Override
    public boolean onTouchEvent(MotionEvent evt)
    {
        if(evt.getAction() == MotionEvent.ACTION_DOWN)
        {
            synchronized(mSplashThread){
                mSplashThread.notifyAll();
            }
        }
        return true;
    }


}

并且,在 WebViewActivity.java

package com.yourname.main;

import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class WebViewActivity extends Activity {

    private WebView webView;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.webview);

        final ProgressDialog pd = ProgressDialog.show(this, "", "Loading...",true);

        webView = (WebView) findViewById(R.id.webView1);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.getSettings().setSupportZoom(true);  
                webView.getSettings().setBuiltInZoomControls(true);
                webView.setWebViewClient(new WebViewClient() {
            @Override
            public void onPageFinished(WebView view, String url) {
                if(pd.isShowing()&&pd!=null)
                {
                    pd.dismiss();
                }
            }
        });

        webView.loadUrl("http://google.com");
        setTitle("Google Search");
    }

}
4

1 回答 1

1

根据您的问题,您不需要启动画面。

您可以执行以下操作:

  1. 忘记 SplashScreen 活动
  2. 直接打开WebViewActivity
  3. 将启动 ImageView 添加到您的 webview.xml
  4. 设置启动 ImageView 图像
  5. 将 webView 可见性设置为 INVISIBLE
  6. 在 onPageFinished 期间将 webView 可见性设置为 VISIBLE 并将 ImageView 飞溅到 GONE

基本上,您将在 webview 顶部显示图像,一旦加载页面,您将删除该图像并显示 webview。

于 2013-05-28T19:39:47.143 回答