Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @Override
  2. public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  3. int layout_id = R.layout.walkthrough10_fragment;
  4. View view = inflater.inflate(layout_id, container, false);
  5.  
  6. String url = BuildConfig.IMAGE_URL + "walkthrough/style-10/Welcome-10-960.jpg";
  7.  
  8. ImageView img = (ImageView) view.findViewById(R.id.imagePage1);
  9. loadImageRequest(img, url);
  10.  
  11. return view;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement