我需要在代码中检查目标设备上当前正在运行的 Android 版本。你能提供代码示例吗?
问问题
21529 次
5 回答
25
我一直在寻找这个并没有找到解决方案 - 最终来到这里,我自己想出来了,所以对于那些正在寻找这个的人来说:
int SDK_INT = android.os.Build.VERSION.SDK_INT;
这将返回 os sdk level 7 eclair 8 froyo 等
于 2010-11-18T17:34:43.243 回答
9
要获得 Android 的构建版本,例如:2.2、2.3.3、4.0 或 4.0.3 ...使用以下代码:
String deviceVersion = Build.VERSION.RELEASE;
于 2012-11-16T08:15:42.960 回答
1
我认为这是我自己的问题的重复:运行时的 ndk 版本。简短的回答:本机应用程序没有简单的方法来做到这一点(但是您可以运行 Java 应用程序并与其通信以获取版本)。
于 2010-06-20T13:03:52.350 回答
1
你可以在你的设备上执行getprop ro.build.version.release
shell 命令吗?
于 2010-06-21T08:06:07.270 回答
-2
这有效
还导入以下内容:
import com.android.phonetests.TEST_INTERFACE;
import android.os.Build;
import android.app.ActivityThread;
import android.content.pm.ApplicationInfo;
import android.content.pm.IPackageManager;
private int GetSDKVersion()
{
int version = 0;
IPackageManager pm = ActivityThread.getPackageManager();
try
{
//returns a ref to my application according to its application name
ApplicationInfo applicationInfo = pm.getApplicationInfo("com.android.phonetests", 0);
if (applicationInfo != null)
{
version = applicationInfo.targetSdkVersion; ////this makes the same -> version = Build.VERSION.SDK_INT
Log.i(LOG_TAG,"[DBG] version: " + version);
//2 is 5
//2.01 6 (Donut - 2.01)
//2.2 7 (Eclair - 2.2) currently it is Eclair_MR1 (Major Release)
switch (version)
{
case Build.VERSION_CODES.ECLAIR_MR1:
Log.i(LOG_TAG,"[DBG] version: ECLAIR");//2.2 7 (Eclair - 2.2) currently it is Eclair_MR1 (Major Release)
break;
case Build.VERSION_CODES.DONUT:
Log.i(LOG_TAG,"[DBG] version: DONUT");//2.01 6 (Donut - 2.01)
break;
}
}
}
catch (android.os.RemoteException e){}
return version;
}
于 2010-06-24T11:33:17.163 回答