В нижней навигации не подключен адаптер - PullRequest
0 голосов
/ 12 декабря 2018

Я пытаюсь отобразить элементы в нижней навигационной активности, используя представление рециркулятора, но я не получаю значения элемента.

У меня есть три макета в моем проекте activity_main.xml, list_row.xml и Frag_home.xml.Представление Recycler находится в frag_home.xml, а list_row.xml содержит два текстовых представления.Я не вижу никаких ошибок в коде, но в журнале, я получаю сообщение Нет адаптер подключен.Ваша помощь высоко ценится.

    Error:
    E/RecyclerView: No adapter attached; skipping layout

    Below is the HomeFragment.kt code.

    class HomeFragment : Fragment() {

        private var adapter:PersonListAdapter?=null
        private var personList:ArrayList<Person>?=null
        private var layoutManager: RecyclerView.LayoutManager?=null


        override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,savedInstanceState: Bundle?): View? {

         return inflater.inflate(R.layout.fragment_home, container, false)

            personList=ArrayList<Person>()
            layoutManager= LinearLayoutManager(this.context)
            adapter= PersonListAdapter(personList, this.context!!)

           recyclerView.layoutManager=layoutManager
            recyclerView.adapter=adapter

            for (i in 0..16) {
                val person = Person()
                person.name="Hello" + i
                person.age = 20 + i
                personList!!.add(person)

            }
            adapter!!.notifyDataSetChanged()
        }
    }

    MainActivity.kt code

    class MainActivity : AppCompatActivity() {

        private var adapter:PersonListAdapter?=null
        private var personList:ArrayList<Person>?=null
        private var layoutManager: RecyclerView.LayoutManager?=null

        private val mOnNavigationItemSelectedListener = BottomNavigationView.OnNavigationItemSelectedListener {item->
            when(item.itemId){
                R.id.home -> {
                    println("home pressed")
                    replaceFragment(HomeFragment())
                    return@OnNavigationItemSelectedListener true
                }
                 }

            false

        }


        override fun onCreate(savedInstanceState: Bundle?) {
            super.onCreate(savedInstanceState)
            setContentView(R.layout.activity_main)

            bottomNavigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener)
            replaceFragment(HomeFragment())


        }


        private fun replaceFragment(fragment: Fragment){
            val fragmentTransaction = supportFragmentManager.beginTransaction()
            fragmentTransaction.replace(R.id.fragmentContainer, fragment)
            fragmentTransaction.commit()
        }
    }
Data Class:
class PersonListAdapter(private val list: ArrayList<Person>?, private val context: Context): RecyclerView.Adapter<PersonListAdapter.ViewHolder>()
{
    override fun getItemCount(): Int {

        return list!!.size
    }

    override fun onCreateViewHolder(parent: ViewGroup, position: Int): ViewHolder {
        val view= LayoutInflater.from(context).inflate(R.layout.list_row,parent,false)
        return ViewHolder(view)
    }
    override fun onBindViewHolder(p0: ViewHolder, p1: Int) {
        p0?.bindItem(list?.get(p1))
    }
    class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView)
    {
        fun bindItem(person: Person?)
        {
            var name: TextView =itemView.findViewById(R.id.name) as TextView
            var age: TextView =itemView.findViewById(R.id.age) as TextView
            name.text=person!!.name
            age.text = person.age.toString()
        }
    }
}

1 Ответ

0 голосов
/ 12 декабря 2018

Первое, что вы делаете в onCreateView () вашего HomeFragment, - это возвращаете раздутый макет.Таким образом, весь ваш код внутри метода onCreateView неприкосновенен.Вместо этого просто держите ссылку на ваш раздутый макет и возвращайте его в конце.

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,savedInstanceState: Bundle?): View? {

     val view = inflater.inflate(R.layout.fragment_home, container, false)
        val recyclerView = view.findViewById<RecyclerView>(R.id.recyclerView)

        personList=ArrayList<Person>()
        layoutManager= LinearLayoutManager(this.context)
        adapter= PersonListAdapter(personList, this.context!!)

       recyclerView.layoutManager=layoutManager
        recyclerView.adapter=adapter

        for (i in 0..16) {
            val person = Person()
            person.name="Hello" + i
            person.age = 20 + i
            personList!!.add(person)

        }
        adapter!!.notifyDataSetChanged()

        return view
}
...