I tried to make a RecyclerView that will go inside one of the two pages of my fragments. These pages are put inside a NavigationDrawer activity. The goal is to create something like the Play Store app homepage.
But I found an error in this snippet of code on runtime. It says:
java.lang.IllegalStateException: mainMenu must not be null
at com.example.MyApp.app.fragment.MainFragment.onCreate(MainFragment.kt:49)
Ive been looking at some SO threads, and they said that the layouts are not properly loaded. Which caused some elements not linked as it should. Another said in the comments that the problem is with the context not initialized properly. Which is not the case for me (rather it's the RecyclerView).
Here are the links, hope they could be useful as a reference.
After multiple-checks on my codes, I swear I've put the right layouts in. EDIT: I imported the kotlinx.android.synthetic.main.^
package where I put this sign: ^${layout}. Here's some of my files (forgive me if this thread becomes too long):
MainActivity.kt : AppCompatActivity()
^activity_main.*override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) // preparing the app bars setSupportActionBar(toolBar) // getting ready for the pages val pagerAdapter = MainPagerAdapter( supportFragmentManager, resources.getString(R.string.tab_main), resources.getString(R.string.tab_chat) ) pager.adapter = pagerAdapter // activating tabs tabLayout.setupWithViewPager(pager) val toggle = ActionBarDrawerToggle( this, mainDrawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close) mainDrawer.addDrawerListener(toggle) navView.setNavigationItemSelectedListener(this) toggle.syncState() }
MainPagerAdapter.kt (fm: FragmentManager, private val page1: String, private val page2: String): FragmentPagerAdapter(fm)
override fun getItem(position: Int): Fragment? { return when (position) { 0 -> MainFragment() 1 -> ChatFragment() else -> null } } override fun getCount() = 2 override fun getPageTitle(position: Int): CharSequence? { return when (position) { 0 -> page1 1 -> page2 else -> null } }
MainFragment.kt : Fragment()
^content_main.*override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?) : View? = inflater.inflate(R.layout.content_main, container) override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // this is the error mainMenu.layoutManager = LinearLayoutManager(this.context) mainMenu.adapter = MyAdapter(itemList) { toast("${it.name} selected") } }
MyAdapter.kt: RecyclerView.Adapter<MyAdapter.MyHolder>()
^item_custom.view.*(courtesy of Antonio Leiva)override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) = GoodsHolder(parent.inflate(R.layout.item_custom)) override fun getItemCount() = itemList.size override fun onBindViewHolder(holder: MyHolder, position: Int) = holder.bind(itemList[position], listener) class MyHolder(v: View): RecyclerView.ViewHolder(v){ private val item: Item? = null private val view = v fun bind(item: Item, listener: (Item) -> Unit) = with (itemView) { imgPic.setImageResource(item.pictureId) txtName.text = item.name txtPrice.text = item.price.toString() setOnClickListener { listener(item) } } }
content_main.xml
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="com.example.MyApp.app.activity.MainActivity" > <!-- the RecyclerView that caused the runtime error --> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/mainMenu"/> </android.support.constraint.ConstraintLayout>
item_custom.xml (These code are inside a LinearLayout inside a CardView)
<ImageView android:id="@+id/imgPic" android:layout_width="match_parent" android:layout_height="128dp" app:srcCompat="@drawable/ic_menu_gallery" /> <TextView android:id="@+id/txtName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Get it while it's hot!" android:layout_margin="@dimen/margin_small" android:layout_marginTop="@dimen/margin_medium" android:maxLines="2" android:ellipsize="end" android:textStyle="bold" /> <TextView android:id="@+id/txtPrice" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="$3.000.000" android:layout_marginLeft="@dimen/margin_small" android:layout_marginStart="@dimen/margin_small" android:layout_marginRight="@dimen/margin_small" android:layout_marginEnd="@dimen/margin_small" android:layout_marginBottom="@dimen/margin_medium"/>
ChatFragment.kt: Fragment() (only contains onCreateView inflating content_main_chat.xml)
content_main_chat.xml (only contains a TextView)