代码位置:
frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/NavigationHandle.java
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// Draw that bar
int navHeight = getHeight();
int height = mRadius * 2;
int width = getWidth();
int y = (navHeight - mBottom - height);
// Patch Begin
/* Hide the bar */
int navHeight = 0;//getHeight();
int height = 0;//mRadius * 2;
int width = 0;//getWidth();
int y = 0;//(navHeight - mBottom - height);
//Patch End
canvas.drawRoundRect(0, y, width, y + height, mRadius, mRadius, mPaint);
}

410

被折叠的 条评论
为什么被折叠?



