| | |
| | | package com.dayu.pipirrapp.fragment; |
| | | |
| | | import android.os.Bundle; |
| | | import android.view.LayoutInflater; |
| | | import android.view.View; |
| | | import android.view.ViewGroup; |
| | | |
| | | import androidx.annotation.NonNull; |
| | | import androidx.annotation.Nullable; |
| | | |
| | | import com.dayu.pipirrapp.databinding.FragmentMapBinding; |
| | | import com.dayu.pipirrapp.databinding.FragmentMyBinding; |
| | | |
| | | /** |
| | | * author: zuo |
| | | * Date: 2023/12/20 |
| | | * Time: 10:16 |
| | | * 备注:我的 |
| | | */ |
| | | public class MyFragment extends BaseFragment{ |
| | | public class MyFragment extends BaseFragment { |
| | | FragmentMyBinding binding; |
| | | |
| | | @Nullable |
| | | @Override |
| | | public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { |
| | | binding = FragmentMyBinding.inflate(inflater, container, false); |
| | | return binding.getRoot(); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |