Styling toolbar menu item title

后端 未结 1 856
野趣味
野趣味 2021-01-28 13:53

I am trying to achieve the Menu Item design as shown in the YouTube application screen below. The menu item I am interested in is the action menu item. In this case the (G)

1条回答
  •  孤街浪徒
    2021-01-28 14:23

    Firstly, you need to create a custom_menu.xml like this:

    
    
        
            android:actionLayout="@layout/custom_layout"
            android:icon="@drawable/ic_action_profile"
            android:title="@string/profile_update"
            app:showAsAction="always" />
    
    

    After this, you create a layout file custom_layout.xml like this:

    
    
        
    
    

    and set this custom_menu.xml in your activity.

    Output:



    Add this in your activity:

      override fun onPrepareOptionsMenu(menu: Menu?): Boolean {
            // getting action layout menu item
            val menuItemName = menu?.findItem(R.id.menu_name)
    
            // getting Linear Layout from custom layout
            val linearLayout = menuItemName?.actionView as LinearLayout
    
            // getting TextView from Linear Layout, i.e., parent of custom layout
            val yourTextView = linearLayout.findViewById(R.id.your_text_view_id)
    
            // setting the first char of the String name
            yourTextView.text = name.substring(0, 1)
    
            return super.onPrepareOptionsMenu(menu)
        }
    

    0 讨论(0)
提交回复
热议问题