1 |
gabriel |
1 |
package com.cesams.twogetskills.inconcert.fragment;
|
|
|
2 |
|
|
|
3 |
import android.os.Bundle;
|
|
|
4 |
|
|
|
5 |
import androidx.fragment.app.Fragment;
|
|
|
6 |
import androidx.lifecycle.LifecycleOwner;
|
|
|
7 |
|
|
|
8 |
import android.view.LayoutInflater;
|
|
|
9 |
import android.view.View;
|
|
|
10 |
import android.view.ViewGroup;
|
|
|
11 |
|
|
|
12 |
import com.cesams.twogetskills.inconcert.R;
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
public class SettingFragment extends Fragment implements LifecycleOwner
|
|
|
16 |
{
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
@Override
|
|
|
21 |
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
|
22 |
Bundle savedInstanceState) {
|
|
|
23 |
// Inflate the layout for this fragment
|
|
|
24 |
return inflater.inflate(R.layout.fragment_setting, container, false);
|
|
|
25 |
}
|
|
|
26 |
}
|