How to style the menu items on an Android action bar

前端 未结 8 1458
孤城傲影
孤城傲影 2020-11-28 04:55

There\'s been many questions on styling on action bars, but the ones I\'ve found either are relating to styling the tabs, or have answers that don\'t work for me.

Th

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 05:28

    BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);

        TextView textView = (TextView) navigation.findViewById(R.id.navigation_home).findViewById(R.id.smallLabel);
        textView.setTypeface(Typeface.DEFAULT_BOLD);
        textView = (TextView) navigation.findViewById(R.id.navigation_home).findViewById(R.id.largeLabel);
        textView.setTypeface(Typeface.DEFAULT_BOLD);
    

提交回复
热议问题