This is a simple code to play a sound on click off a button, this code was initially written in Activity but now i want to change it to Fragments.
erro
In fragment onCreate method is usually written as-
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState){
And Use-
final MediaPlayer mp = MediaPlayer.create(getActivity(), R.raw.rajath);
Button play_button = (Button) view.findViewById(R.id.button3);
If you want to read more about fragments. Check this link.