Меню onPrepareOptionMenu?.FindItem возвращает нулевой android

#android #nullpointerexception #toolbar #menuitem #android-appbarlayout

#Android #исключение nullpointerexception #панель инструментов #элемент меню #android-appbarlayout

Вопрос:

Я хочу добавить пользовательский вид на мою панель инструментов MainActivity. Поэтому я создаю layout.xml файл с представлением внутри, и я добавляю его в main_menu.xml но я никогда не смогу извлечь это из onPrepareOptionsMenu в моей Деятельности.

main_menu.xml

 <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@ id/contact_search"
        android:icon="@drawable/ic_search"
        android:title="Search"
        app:showAsAction="collapseActionView|ifRoom"
        app:actionViewClass="androidx.appcompat.widget.SearchView" />

    <item
        android:id="@ id/currentServerViewItem"
        android:title="My account"
        app:actionLayout="@layout/main_toolbar_views"
        app:showAsAction="always"/>

    <item
        android:id="@ id/action_aboutus"
        android:orderInCategory="100"
        android:title="About us"
        app:showAsAction="never" />
</menu>
 

main_toolbar_views.xml

 <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="32dp"
    android:layout_height="32dp">

    <TextView
        android:id="@ id/currentServerTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/circle_white"
        android:gravity="center"
        android:padding="4dp"
        android:text="UU"
        android:textColor="@color/colorWhite"
        android:textSize="14sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>
 
  private var currentServerTextView: TextView? = null 

 ....

override fun onCreateOptionsMenu(menu: Menu?): Boolean {
        menuInflater.inflate(R.menu.main_menu, menu)

        searchView = menu?.findItem(R.id.contact_search)?.actionView as SearchView
        searchView?.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
            override fun onQueryTextSubmit(query: String?): Boolean {
                return true
            }

            override fun onQueryTextChange(newText: String?): Boolean {
                newText?.let {
                    mainViewModel.setSearchable(it)
                }
                return true
            }
        })
        return super.onCreateOptionsMenu(menu)
}

.....

 override fun onPrepareOptionsMenu(menu: Menu?): Boolean {
   // Here i get a nullPointer exception
        val menuItem = menu?.findItem(R.id.currentServerViewItem)?.actionView as ConstraintLayout
        currentServerTextView = menuItem.findViewById(R.id.currentServerTextView) as TextView
        currentServerTextView?.setOnClickListener {
            toast("Text Clicked!!!")
        }

        return super.onPrepareOptionsMenu(menu)
 }
 

При попытке отладки MenuItem я получаю исключение NullPointerException, хотя меню не равно null.
Также на панели инструментов вместо макета TextView (который представляет собой текстовый вид круга) я вижу только заголовок MyAccount .

Почему это происходит?

Ответ №1:

Проблема исправлена. Проблема заключалась в том, что мне пришлось установить xml

приложение: showAsAction=»ifRoom» android:orderInCategory=»100″