Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 737 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 737 Bytes

#Android-PickPhotos

PickPhotos for Android Devices.It‘s a simple MVP demo.

##GIF

##How to use.

####PickConfig

  new PickConfig.Builder(this)
                .pickMode(PickConfig.MODE_MULTIP_PICK)
                .maxPickSize(30)
                .spanCount(3)
                .toolbarColor(R.color.colorPrimary)
                .build();

####Permission

   <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

####AndroidManifest.xml

   <activity android:name="me.crosswall.photo.pick.PickPhotosActiviy"
            android:screenOrientation="portrait"/>