博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Backward Compatibility for Applications(向后兼容)--摘自--android.doc.resources.articles
阅读量:5896 次
发布时间:2019-06-19

本文共 3141 字,大约阅读时间需要 10 分钟。

 

1.Setting the minSdkVersion

设置最小支持的sdk

   ...    
   ...  

2.Using reflection

使用反射检测要 使用的类 在当前运行环境下 是否有需要调用的属性或方法。

like android.os.Debug.dumpHprofData(String filename). The Debug class has existed since Android 1.0, but the method is new in Anroid 1.5 (API Level 3). If you try to call it directly, your app will fail to run on devices running Android 1.1 or earlier.

public class Reflect{
   private static Method mDebug_dumpHprofData;    static{
       initCompatibility();    };    private static void initCompatibility(){
       try{
           mDebug_dumpHprofData =Debug.class.getMethod(                    "dumpHprofData",newClass[]{
String.class});            /* success, this is a newer device */        }catch(NoSuchMethodException nsme){
           /* failure, must be older device */        }    }    private static void dumpHprofData(String fileName)throws IOException{
       try{
           mDebug_dumpHprofData.invoke(null, fileName);        }catch(InvocationTargetException ite){
           /* unpack original exception when possible */            Throwable cause = ite.getCause();            if(cause instanceof IOException){
               throw(IOException) cause;            }else if(cause instanceofRuntimeException){
               throw(RuntimeException) cause;            }else if(cause instanceofError){
               throw(Error) cause;            }else{
               /* unexpected checked exception; wrap and re-throw */                thrownewRuntimeException(ite);            }        }catch(IllegalAccessException ie){
           System.err.println("unexpected "+ ie);        }    }    public void fiddle(){
       if(mDebug_dumpHprofData !=null){
           /* feature is supported */            try{
               dumpHprofData("/sdcard/dump.hprof");            }catch(IOException ie){
               System.err.println("dump failed!");            }        }else{
           /* feature not supported, do something else */            System.out.println("dump not supported");        }    } }

3.Using a wrapper class

使用一个包裹类。

public class NewClass{
   private static int mDiv =1;    private int mMult;    public static void setGlobalDiv(int div){
       mDiv = div;    }    public NewClass(int mult){
       mMult = mult;    }    public int doStuff(int val){
       return(val * mMult)/ mDiv;    } }

包裹类:

class WrapNew Class{
   private NewClass mInstance;    /* class initialization fails when this throws an exception */    static{
       try{
           Class.forName("NewClass");        }catch(Exception ex){
           throw new RuntimeException(ex);        }    }    /* calling here forces class initialization */    public static void checkAvailable(){}    public static void setGlobalDiv(int div){
       NewClass.setGlobalDiv(div);    }    public WrapNewClass(int mult){
       mInstance =new NewClass(mult);    }    public int doStuff(int val){
       return mInstance.doStuff(val);    } }

 

4.Testing is key

进行完整的sdk测试

转载于:https://www.cnblogs.com/maneater/archive/2012/04/19/2456688.html

你可能感兴趣的文章
minio 并发数_MinIO 参数解析与限制
查看>>
flash back mysql_mysqlbinlog flashback 使用最佳实践
查看>>
mysql存储引擎模式_MySQL存储引擎
查看>>
python类 del_全面了解Python类的内置方法
查看>>
java jni 原理_使用JNI技术实现Java和C++的交互
查看>>
java 重写system.out_重写System.out.println(String x)方法
查看>>
mysql client命令行选项
查看>>
配置ORACLE 11g绿色版客户端和PLSQL远程连接环境
查看>>
ASP.NET中 DataList(数据列表)的使用前台绑定
查看>>
Linux学习之CentOS(八)--Linux系统的分区概念
查看>>
JavaScript---事件
查看>>
Android NDK入门实例 计算斐波那契数列一生成jni头文件
查看>>
c/c++性能优化--I/O优化(上)
查看>>
将HTML特殊转义为实体字符的两种实现方式
查看>>
System.Func<>与System.Action<>
查看>>
asp.net开源CMS推荐
查看>>
csharp skype send message in winform
查看>>
MMORPG 游戏服务器端设计--转载
查看>>
安装系统字体
查看>>
SILK 的 Tilt的意思
查看>>