An open API service indexing awesome lists of open source software.

https://github.com/anwesh43/storyview

A android library to create stories in your app
https://github.com/anwesh43/storyview

android androidviewanimations androidviews gesture java stories ui views whatsappstories

Last synced: 3 months ago
JSON representation

A android library to create stories in your app

Awesome Lists containing this project

README

          

# StoryView

## A library to create awesome stories in your app similar to new Whatsapp status update.

## Usage

### Creating a Story(In Activity)

```
Story story = Story.getInstance(this);
```

### Creating a Status(In Activity)

```
Status status = Status.newInstance(BitmapFactory.decodeResource(getResources(),R.drawable.kol),"Kings Of Leon",new Date());
```

### Adding status to a Story

```
story.addStatus(status);
```

### Adding profile to the story

```
story.setProfilePart(BitmapFactory.decodeResource(getResources(),R.drawable.profile_img),"Anwesh");
```

### Showing the story

```
story.show();
```

### Demo