作者:前所未闻啊_549 | 来源:互联网 | 2023-06-07 11:15
InaprojectIneedtofindiftheuserisusingandroid4.2.1andabove.Pleasehelp在一个项目中,我需要找到用户
In a project I need to find if the user is using android 4.2.1 and above. Please help
在一个项目中,我需要找到用户是否使用Android 4.2.1及更高版本。请帮忙
I have android verion as a String in java. I am aware i cam do this without using regular expression, but i just need to try it using regular expression
我在java中将android verion作为String。我知道我在不使用正则表达式的情况下执行此操作,但我只需要使用正则表达式进行尝试
I can use something like
我可以用类似的东西
Version = "4.2.2"
if(version.matches("[4-99]\\.[2-99]\\.[0-99]")) {
return true;
} else {
return false
}
This works till android 5.0.0 is released and after that it fails till 5.2.0
这有效直到android 5.0.0发布,之后它会失败直到5.2.0
3 个解决方案