android launcher使hotseat item显示标题文字

CellLayout.java:

addViewToCellLayout函数, 改的就是下面加粗的部分:

... ...

        // Hotseat icons - remove text

        if (child instanceof BubbleTextView) {

            BubbleTextView bubbleChild = (BubbleTextView) child;


            Resources res = getResources();

            if (mIsHotseat) {

//                bubbleChild.setTextColor(res.getColor(android.R.color.transparent));

                bubbleChild.setTextSize(16);                

            } else {

                bubbleChild.setTextColor(res.getColor(R.color.workspace_icon_text_color));

            }

        }

... ...

你可能感兴趣的:(android,Launcher,launcher2)