All Projects → vimalcvs → Material-Smart-Rating

vimalcvs / Material-Smart-Rating

Licence: other
😍⭐⭐Material Smart Rating App - An Android library that encourages users to rate the app on Google Play.⭐⭐😘

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Material-Smart-Rating

Smart App Rate
An Android library that encourages users to rate the app on the Google Play.
Stars: ✭ 609 (+1930%)
Mutual labels:  feedback, rating, dialog, rate, smart
Androidrate
AndroidRate is a library to help you promote your Android app by prompting users to rate the app after using it for a few days.
Stars: ✭ 117 (+290%)
Mutual labels:  feedback, rating, dialog, rate
Laravel Love
Add Social Reactions to Laravel Eloquent Models. It lets people express how they feel about the content. Fully customizable Weighted Reaction System & Reaction Type System with Like, Dislike and any other custom emotion types. Do you react?
Stars: ✭ 822 (+2640%)
Mutual labels:  rating, rate
Yii2 Widget Rating
A Yii2 widget for the simple yet powerful bootstrap-star-rating plugin with fractional rating support (sub repo split from yii2-widgets)
Stars: ✭ 47 (+56.67%)
Mutual labels:  rating, icon
Laravel Likeable
Rate Eloquent models with Likes and Dislikes in Laravel. Development moved to Laravel Love package!
Stars: ✭ 95 (+216.67%)
Mutual labels:  rating, rate
Materialdialog Android
📱Android Library to implement animated, 😍beautiful, 🎨stylish Material Dialog in android apps easily.
Stars: ✭ 602 (+1906.67%)
Mutual labels:  material-ui, dialog
rating
⭐ A true Bayesian rating system with scope and cache enabled
Stars: ✭ 49 (+63.33%)
Mutual labels:  rating, rate
Starrate
swift电商五星评价,星星评分控件,支持自定义数量、拖拽、间隔、设置最小星星数等操作
Stars: ✭ 85 (+183.33%)
Mutual labels:  rating, rate
Apprater Dialog
A dialog which asks the user to rate the app
Stars: ✭ 77 (+156.67%)
Mutual labels:  dialog, rate
Customalertviewdialogue
Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms.
Stars: ✭ 100 (+233.33%)
Mutual labels:  feedback, dialog
Aestheticdialogs
📱 An Android Library for 💫fluid, 😍beautiful, 🎨custom Dialogs.
Stars: ✭ 352 (+1073.33%)
Mutual labels:  material-ui, dialog
ngx-feedback
Angular user feedback collector library
Stars: ✭ 17 (-43.33%)
Mutual labels:  feedback, feedback-form
Materiallettericon
Material first letter icon like lollipop contacts icon. Letter(s) on a shape drawn on canvas.
Stars: ✭ 255 (+750%)
Mutual labels:  material-ui, icon
Jstarcraft Rns
专注于解决推荐领域与搜索领域的两个核心问题:排序预测(Ranking)和评分预测(Rating). 为相关领域的研发人员提供完整的通用设计与参考实现. 涵盖了70多种排序预测与评分预测算法,是最快最全的Java推荐与搜索引擎.
Stars: ✭ 324 (+980%)
Mutual labels:  rating, context
soloalert
A customizable lightweight Alert Library with Material UI and awesome features.
Stars: ✭ 18 (-40%)
Mutual labels:  material-ui, dialog
Laravel Reactions
Laravel reactions package for implementing reactions (eg: like, dislike, love, emotion, etc) on Eloquent models.
Stars: ✭ 58 (+93.33%)
Mutual labels:  rating, rate
Ngx Bar Rating
Angular Bar Rating
Stars: ✭ 146 (+386.67%)
Mutual labels:  rating, rate
Nativepopup
Clone of Apple iOS App's feedback popup, and easily customizable.
Stars: ✭ 247 (+723.33%)
Mutual labels:  feedback, dialog
node-red-contrib-FIWARE official
FIWARE-Node-Red integration supporting NGSI-LD
Stars: ✭ 14 (-53.33%)
Mutual labels:  context, smart
sanic-plugin-toolkit
Easily create Plugins for Sanic!
Stars: ✭ 49 (+63.33%)
Mutual labels:  context

Material Smart Rating App

Material Smart app rate dialogue for Android, which considers user rating. The conference will give feedback if the user rates the app below the defined threshold rating. Otherwise, It will take the user to the Google PlayStore.

Features

  • Auto fetches the app icon to appear on top of the dialogue
  • Make the dialogue appear on a defined app session
  • Opens Feedback form if the user rates below the minimum threshold
  • Extracts the accent colour from your app's theme
  • Customizable title, positive button and negative button texts
  • Customizable button colours and backgrounds
  • Override dialogue redirection to Google Play or Feedback form according to your needs

If you want the dialogue builder method, move the code to your Activity class's setOnClickListener() way.

Installation

Add jetpack in your root build. Gradle at the end of repositories:

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

Step 2. Add the dependency

	dependencies {
	
	         ...
	         implementation 'com.github.vimalcvs:Material-Smart-Rating:3.0.0'
	 
	}

How to use

Use the Rating as it is setOnClickListener() Just like MainActivity.java

        Button button = findViewById(R.id.rate_ok);
        button.setOnClickListener(v -> {
	
	    //Rating
            MaterialRatingApp materialRatingApp = new MaterialRatingApp (this);
            materialRatingApp.showNow(getSupportFragmentManager(), "");
        });

Use the Feedback as it is setOnClickListener() Just like MainActivity.java

        Button feedback = findViewById(R.id.feedback_ok);
        feedback.setOnClickListener(v -> {
	
	   //Feedback
            MaterialFeedbackApp bottomSheetDialog = new MaterialFeedbackApp ("[email protected]");
            bottomSheetDialog.showNow(getSupportFragmentManager(), "");
        });

Credits

This project was initiated by TechnoVimal.in. You can contribute to this project by submitting issues or/and forking this repo and sending a pull request.

Follow us on:

Facebook     Twitter

Author: Vimal K. Vishwakarma

License

Copyright (C) 2020 Code Mr Vimal K. Vishwakarma
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].