Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.dedykuncoro.kuncoronavdrawer;
- import android.app.Fragment;
- import android.os.Bundle;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.widget.RelativeLayout;
- /**
- * Created by Kuncoro on 22/03/2016.
- */
- public class Gallery extends Fragment {
- public Gallery(){}
- RelativeLayout view;
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- view = (RelativeLayout) inflater.inflate(R.layout.gallery, container, false);
- getActivity().setTitle("Gallery");
- return view;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment