Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

ppamorim/PrismView

Repository files navigation

Logo 1

Build Status Android Arsenal JitPack

PrismView provides animations for your views, similar to Dragger, but with fragments! You can change the fragment of the PrismView any time.

Sample 1

Usage

    1. Extend your activity with PrismActivity, use the the method setContentView:
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
  }
}
    1. Create and set the adapter:
@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);
  }
    1. Then, call the page!
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:

repositories {
  maven {
    url "https://jitpack.io"
  }
}

dependencies {
  compile 'com.github.ppamorim:prismview:0.3'
}

Todo

  • Change position on runtime

Contributors

Developed By

  • Pedro Paulo de Amorim

Outlook: pp.amorim@hotmail.com

Gmail: pepa.amorim@gmail.com

Add me to Linkedin

Libraries used on the sample project

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 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.