Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ppamorim/PrismView
ViewHelper to provide one activity applications
https://github.com/ppamorim/PrismView
Last synced: 2 months ago
JSON representation
ViewHelper to provide one activity applications
- Host: GitHub
- URL: https://github.com/ppamorim/PrismView
- Owner: ppamorim
- License: apache-2.0
- Archived: true
- Created: 2015-07-09T22:05:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-23T00:01:29.000Z (over 9 years ago)
- Last Synced: 2024-03-17T13:11:03.440Z (10 months ago)
- Language: Java
- Size: 6.12 MB
- Stars: 148
- Watchers: 10
- Forks: 28
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/ppamorim/PrismView
- awesome-android-ui - https://github.com/ppamorim/PrismView
README
![Logo 1][10]
[![Build Status](https://api.travis-ci.org/ppamorim/Cult.svg?branch=master)](https://travis-ci.org/ppamorim/PrismView)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-PrismView-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/2166)
[![JitPack](https://img.shields.io/github/release/ppamorim/PrismView.svg?label=JitPack%20Maven)](https://jitpack.io/#ppamorim/PrismView)PrismView provides animations for your views, similar to [Dragger][4], but with fragments!
You can change the fragment of the PrismView any time.![Sample 1][11]
Usage
-----* 1. Extend your activity with PrismActivity, use the the method `setContentView`:
```java
public class BaseActivity extends PrismActivity {
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_base);
setPrismPosition(PrismPosition.RIGHT); //optional, Use: LEFT, RIGHT, TOP, BOTTOM
setSpringType(SpringType.SPEEDBOUNCINESS); //optional, Use: ORIGAMI, SPEEDBOUNCINESS
setBouncenessSpeed(5, 5); //optional
}
}
```* 2. Create and set the adapter:
```java
@Override protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
FragmentViewItemAdapter fragmentViewItemAdapter =
new FragmentViewItemAdapter(FragmentViewItems.with(this)
.add("tag0", Fragment0.class)
.add("tag1", Fragment1.class)
.create());
setAdapter(fragmentViewItemAdapter);
}```
* 3. Then, call the page!
```java
show(position);
```Import dependency
--------------------------------This library uses `appcompat-v7:22.2.0` and `rebound:0.3.8`.
But why not to add it in MavenCentral?
Because it is so much bureaucratic.JitPack is there and it is the future!
Into your build.gradle:
```groovy
repositories {
maven {
url "https://jitpack.io"
}
}dependencies {
compile 'com.github.ppamorim:prismview:0.3'
}
```Todo
----* Change position on runtime
Contributors
------------* [Pedro Paulo de Amorim][3]
* [Marcelo Camargo][666]Developed By
------------* Pedro Paulo de Amorim
Outlook:
Gmail:
Libraries used on the sample project
------------------------------------* [Butterknife][5]
* [Fresco][6]License
-------Copyright 2015 Pedro Paulo de Amorim
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 athttp://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.[3]: https://github.com/ppamorim/
[4]: https://github.com/ppamorim/Dragger
[5]: https://github.com/JakeWharton/butterknife
[6]: https://github.com/facebook/fresco
[10]: ./art/logo.png
[11]: ./art/sample.gif
[666]: https://github.com/haskellcamargo/