Popularity
3.2
Stable
Activity
0.0
Stable
150
9
29

Code Quality Rank: L5
Programming language: Java
License: Apache License 2.0
Tags: Layout Widget    
Latest version: v0.3

PrismView alternatives and similar packages

Based on the "Layout Widget" category.
Alternatively, view PrismView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of PrismView or a related project?

Add another 'Layout Widget' Package

README

[Logo 1][10]

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][11]

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
  }
}
  • 2. 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);
  }

  • 3. 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: [email protected]

Gmail: [email protected]

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.


*Note that all licence references and agreements mentioned in the PrismView README section above are relevant to that project's source code only.