PrismView

Additional

Language
Java
Version
0.3 (Jul 21, 2015)
Created
Jul 9, 2015
Updated
Jul 23, 2015 (Retired)
Owner
Pedro Paulo Amorim (ppamorim)
Contributors
Pedro Paulo Amorim (ppamorim)
Marcelo Camargo (haskellcamargo)
2
Activity
Badge
Generate
Download
Source code

Advertisement

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

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

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.