You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
547 B
22 lines
547 B
package com.example.app1;
|
|
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
import androidx.fragment.app.Fragment;
|
|
|
|
public class musicFragment extends Fragment {
|
|
@Override
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
|
|
View view = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_music,container,false);
|
|
init(view);
|
|
return view;
|
|
}
|
|
|
|
private void init(View view) {
|
|
|
|
}
|
|
}
|