-
Notifications
You must be signed in to change notification settings - Fork 1
rajivnarayana/SnappingScrollView
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Usage:
Create a SnappingScrollView and set its adapter.(as also seen in MainActivity)
SnappingScrollView layout = new SnappingScrollView(this);
layout.setBackgroundColor(Color.LTGRAY);
layout.setAdapter(new HorizontalScrollViewAdapter() {
@Override
public View getViewAtPosition(int position) {
TextView tv = new TextView(MainActivity.this);
tv.setText("This is a very long text");
tv.setGravity(Gravity.CENTER);
tv.setBackgroundColor(position%2==0?Color.WHITE:Color.DKGRAY);
tv.setTextColor(position%2==0?Color.BLACK:Color.WHITE);
return tv;
}
@Override
public int getCount() {
return 4;
}
});
About
A Custom drag and drop Horizontal Scrollview that shows a bit of content from other pages at the edges
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published