Android launcher2 让Hotseat/底部菜单栏的图标显示标题

Launcher2的hotseat中的图标是不带标题,有些人可能觉得不够美观或者体验不好,这里我尝试地去找了一下可能原因,Hotseat之所以没能显示标题,可能由于以下因素:

1、hotseat的高度不够高

2、hotseat的标题没有设置

3、hotseat的标题被隐藏起来了

好了大概的原因就这些,根据以下步骤修改就行了。

          

1、Hotseat.java,找到resetLayout()方法,添加 allAppsButton.setText(R.string.all_apps_button_label);

 

 
  1. void resetLayout() {

  2. mContent.removeAllViewsInLayout();

  3.  
  4. Context context = getContext();

  5. LayoutInflater inflater = LayoutInflater.from(context);

  6. BubbleTextView allAppsButton = (BubbleTextView) inflater.inflate(

  7. R.layout.application, mContent, false);

  8. allAppsButton.setCompoundDrawablesWithIntrinsicBounds(null, context

  9. .getResources().getDrawable(R.drawable.all_apps_button_icon),

  10. null, null);

  11. allAppsButton.setContentDescription(context

  12. .getString(R.string.all_apps_button_label));

  13. //添加

  14. allAppsButton.setText(R.string.all_apps_button_label);

  15.  
  16. allAppsButton.setOnTouchListener(new View.OnTouchListener() {

  17. @Override

  18. public boolean onTouch(View v, MotionEvent event) {

  19. if (mLauncher != null

  20. && (event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {

  21. mLauncher.onTouchDownAllAppsButton(v);

  22. }

  23. return false;

  24. }

  25. });


 

 

2、CellLayout.java,找到addViewToCellLayout()方法,注释掉  if (child instanceof BubbleTextView) {}部分

 

 
  1. public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,

  2. boolean markCells) {

  3. final LayoutParams lp = params;

  4.  
  5. // Hotseat icons - remove text

  6. // if (child instanceof BubbleTextView) {

  7. // BubbleTextView bubbleChild = (BubbleTextView) child;

  8. //

  9. // Resources res = getResources();

  10. // if (mIsHotseat) {

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

  12. // } else {

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

  14. // }

  15. // }

  16.  
  17. child.setScaleX(getChildrenScale());

  18. child.setScaleY(getChildrenScale());

 

3、分别修改res/values/dimens.xml、res/values-land/dimens.xml、res/values-sw600dp/dimens.xml这3个dimens中的hotseat_cell_height的值,这里我是统一给他们加30dp,你们可以根据实际情况修改。

做完以上几步后,大功告成。

你可能感兴趣的:(学习日志)