blob: ee4b9207da69ded6f1a2c0fb04e787034e694e13 [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.android.bubbles.ui.main
import android.os.Bundle
import android.transition.TransitionInflater
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
import androidx.lifecycle.Observer
import androidx.lifecycle.ViewModelProviders
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.example.android.bubbles.R
import com.example.android.bubbles.getNavigationController
/**
* The main chat list screen.
*/
class MainFragment : Fragment() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
exitTransition = TransitionInflater.from(context).inflateTransition(R.transition.slide_top)
}
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
return inflater.inflate(R.layout.main_fragment, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
val navigationController = getNavigationController()
navigationController.updateAppBar(false)
val viewModel = ViewModelProviders.of(this).get(MainViewModel::class.java)
val contactAdapter = ContactAdapter { id ->
navigationController.openChat(id)
}
viewModel.contacts.observe(viewLifecycleOwner, Observer { contacts ->
contactAdapter.submitList(contacts)
})
view.findViewById<RecyclerView>(R.id.contacts).run {
layoutManager = LinearLayoutManager(view.context)
setHasFixedSize(true)
adapter = contactAdapter
}
}
}