6

我得到这个错误。在我的情况下如何解决这个问题?

"Bitmap cannot be resolved to a type"

发生错误的行

public void onPageStarted(WebView view, String url, Bitmap favicon) {

我的代码

public class MainActivity extends Activity {
    private Activity activity = this;
    private String title = "";

    private ActionBar mActionBar;


    private SimpleSideDrawer mNav;
    WebView myWebView;

    int width, height;
    float flick_width; 
    float flick_height;     

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

          title = activity.getTitle().toString(); // (1)
          requestWindowFeature(Window.FEATURE_PROGRESS);  

        setContentView(R.layout.activity_main);



        getSize();

        mActionBar = getActionBar();
        mActionBar.hide();


        mNav = new SimpleSideDrawer(this);
        mNav.setLeftBehindContentView(R.layout.activity_behind_left_simple, this);
        mNav.setRightBehindContentView(R.layout.activity_behind_right_simple, this);


        myWebView = (WebView)findViewById(R.id.webView1);
        myWebView.setWebViewClient(new WebViewClient());
        myWebView.getSettings().setJavaScriptEnabled(true);

        myWebView.setWebViewClient(new WebViewClient() {
            @Override
            public void onPageStarted(WebView view, String url, Bitmap favicon) {
                Log.d("HelloWebView", "onPageStarted : " + url);
                activity.setTitle("Loading..."); // (2)
                activity.setProgressBarVisibility(true);
            }
            @Override
            public void onPageFinished(WebView view, String url) {
                Log.d("HelloWebView", "onPageFinished : " + url);
            }
            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url) {
                Log.d("HelloWebView", "shouldOverrideUrlLoading : " + url);
                return super.shouldOverrideUrlLoading(view, url);
            }
            @Override
            public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                Log.d("HelloWebView", "onReceivedError : "+description);
                //view.loadData("Error   "+description, "text/plain", "utf-8");
                view.loadDataWithBaseURL(null, "Error ("+errorCode+"):"+description, "text/plain", "utf-8", null);
            }
        });
        myWebView.setWebChromeClient(new WebChromeClient() { // (3)
            public void onProgressChanged(WebView view, int progress) {
                activity.setProgress(progress * 100);
                   Log.d("HelloWebView", "progress="+progress);
                   if (progress==100) {
                       activity.setProgressBarVisibility(false);
                       activity.setTitle(title);
                   }
            }
        });

        myWebView.loadUrl("http://yahoo.com");          
        myWebView.getSettings().setSupportZoom(true); 
        myWebView.getSettings().setLoadWithOverviewMode(true);
        myWebView.getSettings().setUseWideViewPort(true); 
4

2 回答 2

14

Eclipse 在尝试自动解析导入时有时会打嗝。在这种情况下,您可以尝试自己手动输入导入语句:import android.graphics.Bitmap;

于 2013-08-13T21:05:06.837 回答
7

只需单击“Ctr+Shift+O”,即使当您将鼠标悬停在它上面时它不显示导入.. 当您单击它时它会自动导入它--->>“Ctr+Shift+O”

于 2014-04-16T12:05:19.947 回答