You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1000 B
31 lines
1000 B
package com.example.garagedoor
|
|
|
|
import android.os.Bundle
|
|
import androidx.fragment.app.Fragment
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.widget.Button
|
|
import androidx.navigation.fragment.findNavController
|
|
|
|
/**
|
|
* A simple [Fragment] subclass as the second destination in the navigation.
|
|
*/
|
|
class SecondFragment : Fragment() {
|
|
|
|
override fun onCreateView(
|
|
inflater: LayoutInflater, container: ViewGroup?,
|
|
savedInstanceState: Bundle?
|
|
): View? {
|
|
// Inflate the layout for this fragment
|
|
return inflater.inflate(R.layout.fragment_second, container, false)
|
|
}
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
super.onViewCreated(view, savedInstanceState)
|
|
|
|
view.findViewById<Button>(R.id.button_second).setOnClickListener {
|
|
findNavController().navigate(R.id.action_SecondFragment_to_FirstFragment)
|
|
}
|
|
}
|
|
}
|