当前位置:操作系统 > 安卓/Android >>

Android中 判断是平板还是手机

//是平板返回true 不是平板返回false
 
public  boolean isTablet(Context context) {
 
  return (context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_LARGE;
 
 }
补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,