ShortRoid


Source link: https://github.com/prashant2018/ShortRoid

ShortRoid

Android In Short

ShortRoid Library makes it easier to use different functionalities of android. Main objective is to simplify android code and make the development process faster. ShortRoid being open source encourages contributers to contribute and make it more fun for the developers to develop android apps using ShortRoid.

Include ShortRoid

Just add the following line to your apps gradle.build dependencies

compile 'shortroid.shortroid:shortroid:1.0.2'

Following is the documentation for the library. It will be modified as more classess are added.

Documentation

ShortroidDB

An SqlLite library for integrating databases in applications.

Usage

//Attributes are the columns in database table HashMap<String,String> attributes = new HashMap<>();
  // Assigning table attributes and their types  attributes.put("KEY","INTEGER");
 attributes.put("NAME","TEXT NOT NULL");
  // Creating database and table. It only takes one line of code ShortRoidDB shortdb = new ShortRoidDB(MainActivity.this,DATABASE_NAME,1,TABLE_NAME,attributes);
  

Inserting data - insert()

HashMap<String,Object> data = new HashMap<>();
  data.put("KEY",1);
 data.put("NAME","Prashant");
 shortdb.insert(data);
  data.put("KEY",2);
 data.put("NAME","Mohit");
 shortdb.insert(data);

Query data - query()

// No need of cursors List< HashMap<String,String> > list; String q = "SELECT * FROM TABLE_NAME"; list = shortdb.query(q);
  for(HashMap<String,String> hmap:list){

 // hmap.get("Attribute_Name")

String name = hmap.get("NAME");

String key = hmap.get("KEY");

}

Updating database - anyQuery()

String query = "UPDATE table_name 

 SET column1 = value1, column2 = value2...., columnN = valueN 

 WHERE [condition];"

shortdb.anyQuery(query)

AnyQuery i.e Delete, Update, Alter etc - anyQuery()

String query = "DELETE FROM table_name 

 WHERE [condition];" shortdb.anyQuery(query);
 

ShortRoidPreferences

A library to integrate SharedPreferences easily.

Usage

ShortRoidPreferences shortRoidPreferences=new ShortRoidPreferences(context);
  //Use Set methods to put values (key,value)  shortRoidPreferences.setPrefString("Example","JustTesting");

//Use Get methods to get values (key)   shortRoidPreferences.getPrefString("Example");

ShortAnimation

A library to integrate View Animation easily.

Usage

/*Currently Available - ->FadeInAnimation ->FadeOutAnimation ->RotateAnimation ->ScaleAnimation ->TranslateAnimation */ ShortAnimation.FadeInAnimation fadeInAnimation=new ShortAnimation.FadeInAnimation(view);
 //startAnimation() to start the animation(see all methods in ShortAnimation.java) fadeInAnimation.startAnimation();

  

ShortRecyclerView

A library to integrate RecyclerView functionality easily

ShortRecyclerView recyclerView = (ShortRecyclerView) findViewById(id);
  //Add layout manager recyclerView.setLinearLayoutManager(this);
 /*GridLayoutManager and StaggeredGridLayoutManager also avialable   Parameters remain same as original LayoutManager classes */  //Add click listeners recyclerView.addOnItemTouchListener(new RecyclerTouchListener(getApplicationContext(), recyclerView, new ClickListener() {

 @Override

 public void onClick(View view, int position) {

 
}

  @Override

 public void onLongClick(View view, int position) {

 
}

}
));
  //Add vertical spacing between items recyclerView.addVerticalSpace(space value);
 

ShortIntent

ShortIntent shortIntent = new ShortIntent(this);
 // call shortIntent.call("898989xxxx");
  // message shortIntent.message("898989xxxx", "This is for testing");
  // email shortIntent.email("[email protected]", "sub", "body");
 shortIntent.email("[email protected]", "sub", "body", "cc");
  // shareImage shortIntent.shareImage(Uri uri);
 shortIntent.shareImage(String filePath);

ShortScreenShot

ShortScreenShot st = new ShortScreenShot(this);
 // with message st.share(R.id.layout_id_to_share,"Some message");
  //without message st.share(R.id.layout_id_to_share);
 

Contributors

Prashant Kumar - https://github.com/prashant2018/

Mohit Badwal - https://github.com/mohitbadwal/

Subhrajyoti Sen - https://github.com/SubhrajyotiSen

Resources

The Google APIs Client Library for Java is a flexible, efficient, and powerful Java client library for accessing any HTTP-based API on the web, not just Google APIs.

The library has the following features:

  • A powerful OAuth 2.0 library with a consistent interface.
  • Lightweight, efficient XML and JSON data models that support any data schema.
  • Support for protocol buffers.
  • A set of generated libraries for Google APIs.

RxJava-Optional allows to use Optional with RxJava.

A small library containing a wrapper/helper for the shared preferences of Android.

The MultiViewPager is an extension of the support-v4 library's ViewPager that allows the pages to be wider or narrower than the ViewPager itself. It takes care of aligning the pages next to each other, and always keeping the selected page centered.

JavaCPP provides efficient access to native C++ inside Java, not unlike the way some C/C++ compilers interact with assembly language. No need to invent new languages such as with SWIG, SIP, C++/CLI, Cython, or RPython as required by cppyy. Instead, it exploits the syntactic and semantic similarities between Java and C++. Under the hood, it uses JNI, so it works with all implementations of Java SE, in addition to Android, Avian, and RoboVM (instructions).

Material Design implementation for Android 2.2 and newer. This is not the exact copy of the Lollipop's API and features. It's a custom implementation of the most useful things as shown in the design specification. The library also features some additional non-standard extensions, like rounded corners for layouts or a Divider view for easy divider creation.

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