在 android 中检查对 phone 的图像支持
Checking Image support for phone in android
在 Android 中,我们如何检查 phone 是否支持高清或超高清图像或视频。比如我们可以检查互联网连接
private boolean isNetworkConnected() {
ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
return cm.getActiveNetworkInfo() != null;
}
注意:我只需要检查phone是否支持高清超高清图像或视频
在 Android 中,我们如何检查 phone 是否支持高清或超高清图像或视频。比如我们可以检查互联网连接
private boolean isNetworkConnected() {
ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
return cm.getActiveNetworkInfo() != null;
}
注意:我只需要检查phone是否支持高清超高清图像或视频