Revert "名称変更"

This reverts commit 323f29f4a7.
This commit is contained in:
ろむねこ 2023-12-10 23:15:39 +09:00
parent 323f29f4a7
commit 6a43b55809
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168
2 changed files with 6 additions and 6 deletions

View File

@ -10,10 +10,10 @@ import android.view.ViewGroup;
/**
* A simple {@link Fragment} subclass.
* Use the {@link ScannerScanFragment#newInstance} factory method to
* Use the {@link ScannerScanResultFragment#newInstance} factory method to
* create an instance of this fragment.
*/
public class ScannerScanFragment extends Fragment {
public class ScannerScanResultFragment extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
@ -24,7 +24,7 @@ public class ScannerScanFragment extends Fragment {
private String mParam1;
private String mParam2;
public ScannerScanFragment() {
public ScannerScanResultFragment() {
// Required empty public constructor
}
@ -37,8 +37,8 @@ public class ScannerScanFragment extends Fragment {
* @return A new instance of fragment ScannerScanResultFragment.
*/
// TODO: Rename and change types and number of parameters
public static ScannerScanFragment newInstance(String param1, String param2) {
ScannerScanFragment fragment = new ScannerScanFragment();
public static ScannerScanResultFragment newInstance(String param1, String param2) {
ScannerScanResultFragment fragment = new ScannerScanResultFragment();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
@ -59,6 +59,6 @@ public class ScannerScanFragment extends Fragment {
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_scanner_scan, container, false);
return inflater.inflate(R.layout.fragment_scanner_scan_result, container, false);
}
}