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

A layout that hide the header when the body is scrolled down and reveal it when the header is scrolled up.

AppIntroAnimation is a set of code snippets to make cool intro screen for your app with special Image Translation and Transformation animation effects. It is very easy to use and customize without adding third party library integrations.

Use Parse REST API for sending Push Notifications.

This project aims to provide a reusable Swipe to Refresh widget for Android.

This project aims to provide a reusable WaveSwipe to Refresh widget for Android.

Akatsuki is an Android library that handles state restoration via annotations. The library automatically generates source files through JSR269 to ensure almost zero performance impact.

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