最近在公司的項目中 , 華為使用者回報出了一個問題 , 華為手機底部有虛拟按鍵欄把應用的底部内容遮擋住了 , 現在已經把這個問題解決了 , 記錄一下,給各位遇到相同問題的童鞋做一下參考.
處理虛拟按鍵欄工具類:
public class ScreenUtils {
//擷取虛拟按鍵的高度
public static int getNavigationBarHeight(Context context) {
int result = 0;
if (hasNavBar(context)) {
Resources res = context.getResources();
int resourceId = res.getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
result = res.getDimensionPixelSize(resourceId);
}
}
return result;
}
/**
* 檢查是否存在虛拟按鍵欄
*
* @param context
* @return
*/
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
public static boolean hasNavBar(Context context) {
Resources res = context.getResources();//讀取系統資源函數
int resourceId = res.getIdentifier("config_showNavigationBar", "bool", "android");//擷取資源id
if (resourceId != 0) {
boolean hasNav = res.getBoolean(resourceId);
// check override flag
String sNavBarOverride = getNavBarOverride();
if ("1".equals(sNavBarOverride)) {
hasNav = false;
} else if ("0".equals(sNavBarOverride)) {
hasNav = true;
}
return hasNav;
} else { // fallback
return !ViewConfiguration.get(context).hasPermanentMenuKey();
}
}
/**
* 判斷虛拟按鍵欄是否重寫
* @return
*/
private static String getNavBarOverride() {
String sNavBarOverride = null;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
try {
Class c = Class.forName("android.os.SystemProperties");
Method m = c.getDeclaredMethod("get", String.class);
m.setAccessible(true);
sNavBarOverride = (String) m.invoke(null, "qemu.hw.mainkeys");
} catch (Throwable e) {
}
}
return sNavBarOverride;
}
}
調用工具類方法 , 擷取虛拟按鍵高度:
//處理虛拟按鍵
//判斷使用者手機機型是否有虛拟按鍵欄 if(ScreenUtils.hasNavBar(getApplicationContext())){
setNavigationBar();
}
//處理虛拟按鍵
private void setNavigationBar() {
int barHeight = ScreenUtils.getNavigationBarHeight(getApplicationContext());
LinearLayout.LayoutParams barParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT);
TextView tv = new TextView(this);
tv.setHeight(barHeight);
tv.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
tv.setBackgroundColor(Color.BLACK);
llNavigationBar.addView(tv,barParams);
}
小編整理了一份Android電子書籍,需要的童鞋關注底部公衆号(longxuanzhigu)回複:“e_books” 即可擷取哦!
以下是個人公衆号(longxuanzhigu),之後釋出的文章會同步到該公衆号,友善交流學習Android知識及分享個人愛好文章: