RKPX30_android8.1除去google搜索栏

除去google搜索栏
1、修改文件:packages/apps/Launcher3/res/layout/search_container_workspace.xml

<!--
    <fragment
        android:name="com.android.launcher3.qsb.QsbContainerView$QsbFragment"
        android:layout_width="match_parent"
        android:tag="qsb_view"
        android:layout_height="match_parent"/>
	-->	
//将以上注释掉
</com.android.launcher3.qsb.QsbContainerView>

2、修改文件:packages/apps/Launcher3/src/com/android/launcher3/Workspace.java

/*
        CellLayout.LayoutParams lp = new CellLayout.LayoutParams(0, 0, firstPage.getCountX(), 1);
        lp.canReorder = false;
        if (!firstPage.addViewToCellLayout(qsb, 0, R.id.search_container_workspace, lp, true)) {
            Log.e(TAG, "Failed to add to item at (0, 0) to CellLayout");
        }

       */

猜你喜欢

转载自blog.csdn.net/qq_38312843/article/details/103568414