Created
February 17, 2017 15:58
-
-
Save cthulhuplush/e969d595125137a6414805164ccd3164 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Fragment1 extends Fragment | |
{ | |
@BindView(R.id.fragment1_logo) ImageView mLogo; | |
public Fragment1() | |
{ | |
// Required empty public constructor | |
} | |
public static Fragment1 newInstance() | |
{ | |
return new Fragment1(); | |
} | |
@Override | |
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) | |
{ | |
View v = inflater.inflate(R.layout.fragment1, container, false); | |
if (v != null) | |
{ | |
ButterKnife.bind(this, v); | |
} | |
return v; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment