左晓为主开发手持机充值管理机
zuoxiao
2025-03-06 7f55711fd88ff5dc67bbd386fbecc7bd50bd98c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dayu.general.activity
 
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
import com.dayu.general.databinding.FragmentMyBinding
 
class MyFragment : Fragment() {
    var binding: FragmentMyBinding? = null;
    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        binding = FragmentMyBinding.inflate(inflater, container, false)
        return binding?.root
    }
}