SlidingCard


Source link: https://github.com/mxn21/SlidingCard

SlidingCard

Sliding cards with pretty gallery effects.

Download

Include the following dependency in your build.gradle file.

Gradle:

 repositories {

jcenter()
  
}

dependencies {

compile 'com.mxn.soul:slidingcard-core:1.3.1'
  
}

Usage

For a working implementation of this project see the app/ folder.

1.Add the com.mxn.soul.slidingcard_core.ContainerView to your layout XML file.

activity_main.xml:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

xmlns:card="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

android:paddingBottom="@dimen/activity_vertical_margin"

tools:context=".MainActivity">

 <com.mxn.soul.slidingcard_core.ContainerView

 android:id="@+id/contentview"

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 card:card_item_height = "230dp"

 card:card_item_margin = "10dp"

 />

</RelativeLayout> 

card_item_height need to be bigger than the height of your photo or any view you create for each item .

if you want the first view smaller than the second one to get a beautiful screen,you need to set card_item_margin

2.Create your own layout for the card

sliding_card_item.xml

 <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout

 android:id="@+id/sliding_card_content_view"

 xmlns:android="http://schemas.android.com/apk/res/android"

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:gravity="center"

 android:paddingBottom="20dp">

 <ImageView

 android:id="@+id/user_imageview"

 android:layout_width="fill_parent"

 android:layout_height="200dp"

 android:layout_margin="10dp"

 android:background="#ffffff"

 android:padding="5dp"

 android:scaleType="fitXY"

 android:contentDescription="@string/app_name"/>

 <TextView

 android:id="@+id/user_text"

 android:layout_width="fill_parent"

 android:layout_height="wrap_content"

 android:layout_alignBottom="@id/user_imageview"

 android:layout_marginBottom="5dp"

 android:layout_marginLeft="15dp"

 android:layout_marginRight="15dp"

 android:background="#90575E6A"

 android:padding="5dp"

 android:textColor="#ffffff"

 android:textSize="14sp"/>
  </RelativeLayout>

3.implements ContainerView.ContainerInterface and override initCard(),exChangeCard()

public class MainActivity extends ActionBarActivity implements ContainerView.ContainerInterface {

private ContainerView contentView;
  private List<PhotoContent> dataList ;

@Override
  protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.activity_main);

  contentView = (ContainerView) findViewById(R.id.contentview);

  initData() ;
  
}

private void initData(){

dataList = new ArrayList<>();

String[] titles = getResources().getStringArray(R.array.title) ;

String[] imgs = getResources().getStringArray(R.array.imgs) ;

for(int n = 0 ; n < titles.length;n++){

 PhotoContent photoContent = new PhotoContent(String.valueOf(n),titles[n],imgs[n]) ;

 dataList.add(photoContent) ;

  
}

contentView.initCardView(MainActivity.this,R.layout.sliding_card_item,R.id

  .sliding_card_content_view);

  
}

@Override
  public void initCard(SlidingCard card, int index) {

  ImageView mImageView = (ImageView) card.findViewById(R.id.user_imageview);

  TextView mTextView = (TextView) card.findViewById(R.id.user_text);

if (dataList.get(index) != null) {

mTextView.setText(dataList.get(index).getTitle());

mImageView.setImageResource(getResourceByReflect(dataList.get(index).getUrl()));

 mImageView.setOnClickListener(new View.OnClickListener() {

  @Override

public void onClick(View v) {

  //the first card index must be 0

Toast.makeText(MainActivity.this, dataList.get(0).getTitle(), Toast

 .LENGTH_SHORT).show();

 
}

  
}
);

  
}

  
}

@Override
  public void exChangeCard() {

  PhotoContent item = dataList.get(0);

  dataList.remove(0);

  dataList.add(item);

  
}

// you can ues UniversalImageLoader,Fresco etc to display image ,and replace the method

public int getResourceByReflect(String imageName) {

 Class drawable = R.drawable.class;

 Field field ;

 int r_id;

 try {

 field = drawable.getField(imageName);

 r_id = field.getInt(field.getName());

  
}
 catch (Exception e) {

  r_id = R.drawable.img1;

  Log.e("ERROR", String.valueOf(e.getMessage()));

  
}

return r_id;

}
 
}

contentView.initCardView() need to set you own layout's name ,and the root's id . example: initCardView(ContainerInterface mContainerInterface,int layoutId,int rootId).

it's easy to set new ArrayList() to store the data , but make sure the list's size is more than 3 .

if you put it in scrollable viewgroup like listview ,viewpager etc..,drag will not work normally, I provide a method to avoid scroll conflict:

 public void setScrollableGroups(ViewGroup...args)

do this after contentView's Initialization:

 contentView = (ContainerView) view.findViewById(R.id.contentview);

  contentView.setScrollableGroups(viewPager, listview) ;
  contentView.initCardView(MyFragment.this, R.layout.sliding_card_item, R.id

  .sliding_card_content_view);

TODO

Optimized memory

V1.7

support SlidingCard with Fragment. Add method to solve scroll conflict.

V1.6

make it easier to use.

V1.5

????????????????????bug? ????????? public static boolean sScrolling = false ;?????????? ??????????????????????????

V1.4

?????????????????????

V1.3

?????????.????????????????????????????????????????????????????

V1.2

????????????BUG???.

V1.1

????????

?SlidingCard?dispatchDraw?????????:


  PaintFlagsDrawFilter pfd = new PaintFlagsDrawFilter(0, Paint.ANTI_ALIAS_FLAG|Paint

 .FILTER_BITMAP_FLAG);

  canvas.setDrawFilter(pfd);

???????view???????3.0???????? ?????????????2D???????????????View?????????????? ???????????????????????????????????????????????????

 if(android.os.Build.VERSION.SDK_INT>=11)

{

 setLayerType(LAYER_TYPE_SOFTWARE, null);

}

???????????

V1.0

???????????????

????????

1????????????????? 2?????????? 3???????????? 4??????????bug 5????????????????? 6?????

License

Copyright 2015 soul.mxn  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. 

Resources

Styled Map Pager is an awesome first of its type android library for showing a multiple location with different pins along with custom style on a google map with view pager.

It highlights selected location with unique marker pin. It give prominence to certain marker with needs to be highlighted which are selected by you. Also displays selected location in center of screen. Markers are changed with map zoom in and zoom out effects.

Main thing is that this all is binding with pager slider. With sliding of pager map locations are also moves.

Android library designed for rapid and customizable form validation.

You can use AndroidVerify with any View that extends the original EditText (such as MaterialEditText for example).

A simple library to add like animation similar to instagram.

An extension to RecyclerView which will snap child Views to a specified anchor; START, CENTER or END.

UI library that helps you to make a cute collection of collapsible/expandable pages.

Spruce is a lightweight animation library that helps choreograph the animations on the screen. With so many different animation libraries out there, developers need to make sure that each view is animating at the appropriate time. Spruce can help designers request complex multi-view animations and not have the developers cringe at the prototype.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes