首页 > 移动平台 > 详细

android利用Context提供的方法实现java映射

时间:2014-12-04 18:02:52      阅读:269      评论:0      收藏:0      [点我收藏+]

实例如下:

private Context mOtherAppsContext=null;

private static final String MCUBE_PACKAGE="com.mcube.acc";

 private static final String MCUBE_CLASS="com.mcube.acc.SensorControl";

private Class mcubeClass=null;

private Integer initCheck;



try
    {
        mOtherAppsContext =  createPackageContext(MCUBE_PACKAGE,Context.CONTEXT_IGNORE_SECURITY|CONTEXT_INCLUDE_CODE);        
        mcubeClass = mOtherAppsContext.getClassLoader().loadClass(MCUBE_CLASS);
        final Object myInstance  = mcubeClass.newInstance();
        final Method getProduct = mcubeClass.getMethod("getProduct",(Class[]) null);
        final Method initJNI = mcubeClass.getMethod("init_jni",(Class[]) null);
        initCheck=(Integer) initJNI.invoke(myInstance);

        if(initCheck != null && initCheck.intValue()== 0)
        {
            product = (Integer)getProduct.invoke(myInstance);
            if(product != null)
            {
                Log.i(TAG,"get product id check result=" + product.intValue());
            
                if (product.intValue() != 0 )
                {
                    //if(mGsensorCali != null)
                    root.removePreference(mGsensorCali);
                    Log.i(TAG,"Not mCube product");
                }
                else
                {
                    Log.i(TAG,"mCube product Detected");    
                }
            }
        }
        else
        {
         //if(mGsensorCali != null)
            root.removePreference(mGsensorCali);
            Log.i(TAG,"product check fail");
        }
    }

        catch (NameNotFoundException e)
        {
            e.printStackTrace();
        }
        
        catch (ClassNotFoundException e)
    {
        e.printStackTrace();
        }
        catch (InstantiationException e)
        {  
            e.printStackTrace();
        }
        catch (IllegalAccessException e)
        {  
            e.printStackTrace();
        }
        catch (NoSuchMethodException e)
    {
        e.printStackTrace();
    }
    catch (InvocationTargetException e)
    {
        e.printStackTrace();
    }

android利用Context提供的方法实现java映射

原文:http://blog.csdn.net/u012554768/article/details/41726039

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!