Ecosyste.ms: Awesome

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

https://github.com/Meetic/MaryPopup

Expand your view with no problem ;)
https://github.com/Meetic/MaryPopup

Last synced: 1 day ago
JSON representation

Expand your view with no problem ;)

Lists

README

        

MaryPopup
=======

[![API](https://img.shields.io/badge/API-10%2B-green.svg)][repo]
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-MaryPopup-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/3531)
[![Build Status](https://travis-ci.org/Meetic/MaryPopup.svg?branch=master)](https://travis-ci.org/Meetic/MaryPopup)

Expand your view with no problem ;)

[![intro](media/intro.gif)][repo][![fadeout](media/photo.gif)][repo]

# Usage

Open marypopup from a view

```java
MaryPopup marypopup = MaryPopup.with(context)
.cancellable(true)
.blackOverlayColor(Color.parseColor("#DD444444"))
.backgroundColor(Color.parseColor("#EFF4F5"))
.content(R.layout.popup_content)
.from(clickedView)
.show();
```

```java
CustomView customView = LayoutInflater...
MaryPopup marypopup = MaryPopup.with(context)
.cancellable(true)
.blackOverlayColor(Color.parseColor("#DD444444"))
.backgroundColor(Color.parseColor("#EFF4F5"))
.content(customView)
.from(clickedView)
.show();
```

# Center

[![center](media/center.gif)][repo]

```java
MaryPopup marypopup = MaryPopup.with(context)
...
.center(true)
...
.show();
```

# Draggable

[![draggable](media/draggable.gif)][repo]

```java
MaryPopup.with(context)
...
.draggable(true)
...
.show();
```

[![scaledown](media/scaledown.gif)][repo]

```java
MaryPopup.with(context)
...
.draggable(true)
.scaleDownDragging(true);
...
.show();
```

[![fadeout](media/fadeout.gif)][repo]

```java
MaryPopup.with(context)
...
.draggable(true)
.fadeOutDragging(true);
...
.show();
```

# Close

Don't forget to handle the activity's `onBackPress`

```java
@Override
public void onBackPressed() {
if(!marypopup.close(true)){
super.onBackPressed();
}
}
```

# Download

Add into your **build.gradle**

[ ![Download](https://api.bintray.com/packages/meetic-android/maven/MaryPopup/images/download.svg) ](https://bintray.com/meetic-android/maven/MaryPopup/_latestVersion)

```groovy
compile 'com.meetic.marypopup:marypopup:(last version)'
compile 'com.meetic.dragueur:dragueur:1.0.3'
```

Move your views with [Dragueur][Dragueur] !

# Credits

A project initiated by Meetic

This project was first developed by Meetic and has been open-sourced since. We will continue working on it.
We encourage the community to contribute to the project by opening tickets and/or pull requests.

[![logo meetic](media/meetic.jpg)][meetic]

Contributor: [Florent Champigny][florent]

# License

Copyright 2016 Meetic, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

[repo]: https://github.com/Meetic/MaryPopup
[androidarsenal]: http://android-arsenal.com/details/--------
[meetic]: http://www.meetic.fr/
[dragueur]: https://github.com/Meetic/Dragueur
[florent]: https://github.com/florent37