Skip to content

Instantly share code, notes, and snippets.

@manishkpr
Created December 30, 2016 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishkpr/81baa7350352d4632490f236356f10c4 to your computer and use it in GitHub Desktop.
Save manishkpr/81baa7350352d4632490f236356f10c4 to your computer and use it in GitHub Desktop.
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ViewPager viewPager = (ViewPager) findViewById(R.id.view_pager);
ImageAdapter adapter = new ImageAdapter(this);
viewPager.setAdapter(adapter);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment