需要有关使用反射以实现向后兼容性的帮助

时间:2010-09-18 08:13:13

标签: java android reflection backwards-compatibility

我一直在阅读关于反射的android文档,但我并没有真正掌握如何实际使用它。我必须创建多个类文件吗?它是否在同一个类文件中将它分解为某些部分?我想了解它,我真的这么做,但我只是不明白。

无论如何,我有这个简单的webview代码,想要使用SDK7的新地理位置代码,但它会导致1.5和1.6手机崩溃。我真的希望能够使这个java类工作(至少加载html),即使地理位置在sdk7之前不起作用。当SDK在7以下时,我已经在eclipse中对所有代码下面的红线进行了评论。有人会介意用我的代码向我展示如何使用反射吗?我真的很感激。我已经阅读了沼泽和文件,我读完之后尝试的一切都不起作用。

    package com.my.app;

    import com.facebook.android.R;
    //NEEDS TO BE IGNORED**********************************************************
    import android.webkit.GeolocationPermissions;
    import android.webkit.GeolocationPermissions.Callback;
    //END**************************************************************************
    import android.app.Activity;
    import android.app.ProgressDialog;
    import android.content.Intent;
    import android.net.Uri;
    import android.os.Bundle;
    import android.util.Log;
    import android.view.KeyEvent; 
    import android.view.Menu;
    import android.view.MenuInflater;
    import android.view.MenuItem;
    import android.webkit.CookieSyncManager;
    import android.webkit.WebChromeClient;
    import android.webkit.WebView;
    import android.webkit.WebViewClient;
    import android.widget.Toast;

    //GeolocationPermissionsCallback NEEDS TO BE IGNORED**********************************************************
    public class Places extends Activity implements GeolocationPermissions.Callback{ 
            private ProgressDialog progressBar;
            public WebView webview;
            private static final String TAG = "Main";
            String geoWebsiteURL = "http://google.com";

            @Override 
             public void onStart()
            {
               super.onStart();
                CookieSyncManager.getInstance().sync();

            }




        public void onCreate(Bundle savedInstanceState) { 
            super.onCreate(savedInstanceState); 
            setContentView(R.layout.main);
            CookieSyncManager.createInstance(this);
            CookieSyncManager.getInstance().startSync();

            webview = (WebView) findViewById(R.id.webview);
            webview.setWebViewClient(new testClient());
            webview.getSettings().setJavaScriptEnabled(true);
            webview.getSettings().setPluginsEnabled(true);
            webview.loadUrl("http://google.com");

            progressBar = ProgressDialog.show(Places.this, "", "Loading Page...");

            //START GROUP OF CODE THAT NEEDS TO BE IGNORED************************************************************
            webview.getSettings().setGeolocationEnabled(true);



            GeoClient geo = new GeoClient();
            webview.setWebChromeClient(geo);        

        }

        public void invoke(String origin, boolean allow, boolean remember) {

        }

        final class GeoClient extends WebChromeClient {


        @Override
        public void onGeolocationPermissionsShowPrompt(String origin,
        Callback callback) {
        super.onGeolocationPermissionsShowPrompt(origin, callback);
        callback.invoke(origin, true, false);
        }
    //END OF CODE THAT NEEDS TO BE IGNORED************************************************


}


        private class testClient extends WebViewClient { 
            @Override 
            public boolean shouldOverrideUrlLoading(WebView view, String url) {
                Log.i(TAG, "Processing webview url click...");
                view.loadUrl(url);
                return true;  



            }





            public void onPageFinished(WebView view, String url) {
                Log.i(TAG, "Finished loading URL: " +url);
                if (progressBar.isShowing()) {
                    progressBar.dismiss();
                }

                if (url.startsWith("mailto:") || url.startsWith("geo:") ||
                        url.startsWith("tel:")) {
                                                    Intent intent = new Intent
                        (Intent.ACTION_VIEW, Uri.parse(url));
                                                    startActivity(intent);
                        }
            }
        }



            public boolean onKeyDown(int keyCode, KeyEvent event) { 
                if ((keyCode == KeyEvent.KEYCODE_BACK) && webview.canGoBack()) { 
                    webview.goBack(); 
                    return true; 
                }
                    if (keyCode == KeyEvent.KEYCODE_SEARCH) {

                        Intent z = new Intent(this, Search.class);
                        startActivity(z);

                      }  
                return super.onKeyDown(keyCode, event);  
                }




            public boolean onCreateOptionsMenu (Menu menu) {
                super.onCreateOptionsMenu(menu);
                MenuInflater inflater = getMenuInflater();
                inflater.inflate(R.menu.menu, menu);
                return true;
            }

        @Override
        public boolean onOptionsItemSelected (MenuItem item) {
                switch (item.getItemId()) {
                case R.id.home:
                    Intent m = new Intent(this, Home.class);
                    startActivity(m);
                    return true;

                case R.id.refresh:
                    webview.reload();
                    Toast.makeText(this, "Refreshing...", Toast.LENGTH_SHORT).show();
                    return true;


        }
        return false;
            }

        public void onStop()
        {
           super.onStop();
    CookieSyncManager.getInstance().sync();

        }




    }

1 个答案:

答案 0 :(得分:1)

将您的7个代码重构为一个单独的类,并且在现有代码中没有引用此新类。

然后,您需要一种方法来确定您所需的设施是否存在。在我看来你可以使用“is android.webkit.GeolocationPermissions present”这是最简单的,因为你可以使用Class.forName("android.webkit.GeolocationPermissions"),然后使用反射来首先加载你上面写的单独的类,然后调用你的方法想在你的班上跑。这将确保您的代码不会向JVM提示您的单独类甚至存在,直到您在运行时确定您将需要它为止。

有关如何使用反射在给定类中调用给定方法的示例,请参阅http://www.exampledepot.com/egs/java.lang.reflect/Methods.html