SquareRatingView


Source link: https://github.com/ashokslsk/SquareRatingView

SquareRatingView

SquareRatingView is a Custom RatingBar component that allows you to customise your rating view with any image or by default with green and grey tiles. RatingBar by default is a star icon and is little tricky while changing the icon to any other icon. SquareRatingView is here to solve the problem.

Example I Example II

How to use

#Installation

//Add it in your root build.gradle at the end of repositories:  allprojects {

repositories {

 ...
 maven {
 url 'https://jitpack.io' 
}

}
 
}
  dependencies {

 compile 'com.github.ashokslsk:SquareRatingView:1.2'  
}

In your xml add the following code to see the default square rating view

  <com.ashokslsk.androidabcd.squarerating.SquareRatingView

android:id="@+id/square"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

app:setNumSquare="8"

app:setRating="0"

app:setStepSize="0.5" /> 

In your xml add the following square rating view for drawable image

 <com.ashokslsk.androidabcd.squarerating.SquareRatingView

android:id="@+id/square"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

app:setNumSquare="8"

app:setRating="0"

app:setSelectedResource="@mipmap/ic_launcher"

  // Your selected drawable resource

app:setUnSelectedResource="@mipmap/ic_launcher_round" // Your unselected drawable resource

app:setStepSize="0.5" /> 

Use the following values for customising the rating tiles and stepsizes.


 app:setNumSquare="8"
  app:setRating="0"
  app:setStepSize="0.5"
  app:setSelectedResource="@mipmap/ic_launcher"
  app:setUnSelectedResource="@mipmap/ic_launcher_round" 

JAVA Controls

 mRatingView = (SquareRatingView) findViewById(R.id.square);

mRatingView.setNumStars(0);

 mRatingView.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {

 @Override

 public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {

Toast.makeText(MainActivity.this, ratingBar.getRating()+"", Toast.LENGTH_SHORT).show();

}

}
);
 

License

MIT License  Copyright (c) 2017 Ashok Kumar S.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  

Resources

Android floating window permission compatibility library.

Create navigation drawers in your Activities and Fragments without having to write any XML, in pure Kotlin code, with access to all the features of the original library: all sorts of menu items, badges, account headers, and more.

Android RecyclerView sticky header list / grid layout manager. It supports header shadows, smooth scroll, individual sticky header state and scrollbars. Can be used as simple list layout, using one column.

ViewPump installs a custom LayoutInflater via a ContextThemeWrapper and provides an API of pre/post-inflation interceptors.

Dynamic-animation is a new module introduced in revision 25.3.0 of the Android Support Library. It provides a small set of classes for making realistic physics-based view animations.

A FileBrowser / FileChooser for Android that you can integrate to your app to browse/select files from internal/external storage.

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