ChatsFragment.java 559 B

12345678910111213141516171819202122
  1. package com.example.chatapp.fragments;
  2. import android.os.Bundle;
  3. import android.view.LayoutInflater;
  4. import android.view.View;
  5. import android.view.ViewGroup;
  6. import androidx.fragment.app.Fragment;
  7. import com.example.chatapp.R;
  8. public class ChatsFragment extends Fragment {
  9. @Override
  10. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  11. Bundle savedInstanceState) {
  12. // Inflate the layout for this fragment
  13. return inflater.inflate(R.layout.fragment_chats, container, false);
  14. }
  15. }