ASimpleCache


Source link: https://github.com/Kishanjvaghela/ASimpleCache

ASimpleCache

ASimpleCache is a lightweight open source cache framework for android.

1. What can it cache?

  • String
  • JsonObject
  • JsonArray
  • Bitmap, Drawable
  • Serialized java object
  • Serialized java object list
  • Byte data.

2. Features!

  • Configurable, you can configure the cache path, cache size, cache number, and so on.
  • You can set the cache timeout, the cache timeout automatically expires, and is deleted.
  • Support multi-process.

3. How to use?

Add to global gradle

maven {

  url 'https://dl.bintray.com/kishanvaghela/maven/'
 
}

Add to app gradle

compile 'org.afinal.simplecache:a-simple-cache:1.0'

Save Data

ACache mCache = ACache.get(this);
 mCache.put("test_key1", "test value");
  // Save 10 seconds, if more than 10 seconds to get the key, will be null mCache.put("test_key2", "test value", 10);
  //Save for two days, if more than two days to get the key, will be null mCache.put("test_key3", "test value", 2 * ACache.TIME_DAY);

Retrieve data

ACache mCache = ACache.get(this);
 String value = mCache.getAsString("test_key1");

For more examples see Demo

Change note

v1.0

  • Add support for Serialized java object list

Note

This libary is forked from yangfuhai/ASimpleCache

Resources

MultiActionTextView allows to create Spannable TextView with and without under line.

PagerSlidingTabStrip is an interactive indicator to navigate between the different pages of a ViewPager. Inspired by astuetz/PagerSlidingTabStrip.

jraf-android-util is a collection of general purpose utilities for Android.

Why it exists

There is currently no way for an android application to catch and report ANR errors. If your application is not in the play store (either because you are still developing it or because you are distributing it differently), the only way to investigate an ANR is to pull the file /data/anr/traces.txt.

What it does

It sets up a watchdog timer that will detect when the UI thread stops responding. When it does, it raises an error with the main thread's stack trace.

XStream is a simple library to serialize objects to XML and back again.

Features:

  • Ease of use
  • No mappings required
  • Performance
  • Clean XML
  • Requires no modifications to objects
  • Full object graph support
  • Integrates with other XML APIs
  • Customizable conversion strategies
  • Security framework
  • Error messages
  • Alternative output format

droid-fu is a utility library for your daily Android needs.

NOTICE: This project has been discontinued. Developers are putting all efforts into ignition now, which is basically a rewritten but API breaking version of Droid-Fu that aims to have better project structure, better and less intrusive APIs, better documentation (we have samples now!) and proper release and issue management.

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