All Projects → kobakei → Android Ratethisapp

kobakei / Android Ratethisapp

Licence: apache-2.0
Android library to show "Rate this app" dialog

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Ratethisapp

Android Ratingreviews
Simple star rating system bars, a view similar to the ones seen on Google Playstore. ⭐🌟✨
Stars: ✭ 110 (-80.11%)
Mutual labels:  view, rating
Circleview
A Circle View containing Title and Subtitle
Stars: ✭ 530 (-4.16%)
Mutual labels:  view
Tocropviewcontroller
A view controller for iOS that allows users to crop portions of UIImage objects
Stars: ✭ 4,210 (+661.3%)
Mutual labels:  view
Waitview
显示等待加载状态的View
Stars: ✭ 465 (-15.91%)
Mutual labels:  view
Mylinearlayout
MyLayout is a powerful iOS UI framework implemented by Objective-C. It integrates the functions with Android Layout,iOS AutoLayout,SizeClass, HTML CSS float and flexbox and bootstrap. So you can use LinearLayout,RelativeLayout,FrameLayout,TableLayout,FlowLayout,FloatLayout,PathLayout,GridLayout,LayoutSizeClass to build your App 自动布局 UIView UITab…
Stars: ✭ 4,152 (+650.81%)
Mutual labels:  view
Laravel Blade Javascript
A Blade directive to export variables to JavaScript
Stars: ✭ 485 (-12.3%)
Mutual labels:  view
Bouncylayout
Make. It. Bounce.
Stars: ✭ 4,035 (+629.66%)
Mutual labels:  view
Blade
🔪 A standalone version of Laravel's Blade templating engine for use outside of Laravel.
Stars: ✭ 542 (-1.99%)
Mutual labels:  view
Scrollbear
A modern tool that maintains scroll position when images loaded
Stars: ✭ 523 (-5.42%)
Mutual labels:  view
Freepager
ViewPagers library for Android
Stars: ✭ 461 (-16.64%)
Mutual labels:  view
Edgetranslucent
Android 任意View边沿渐变透明
Stars: ✭ 461 (-16.64%)
Mutual labels:  view
Weatherview
WeatherView is an Android Library let you make cool weather animations for your app
Stars: ✭ 426 (-22.97%)
Mutual labels:  view
Popview Android
Pop animation with circular dust effect for any view updation
Stars: ✭ 487 (-11.93%)
Mutual labels:  view
Lemniscate
An easy way to make your progress view nice and sleek.
Stars: ✭ 420 (-24.05%)
Mutual labels:  view
Laravel Blade X
Use custom HTML components in your Blade views
Stars: ✭ 538 (-2.71%)
Mutual labels:  view
Bladeone
The standalone version Blade Template Engine without Laravel in a single php file and without dependencies
Stars: ✭ 411 (-25.68%)
Mutual labels:  view
Materialtimelineview
With MaterialTimelineView you can easily create a material looking timeline.
Stars: ✭ 443 (-19.89%)
Mutual labels:  view
Stacklabel
🔥空祖家的堆叠标签(以下碎念:一开始起名字“StackLabel”没想太多结果被人吐槽Stack是整齐堆叠的意思...........好吧这是我的锅不过现在要改也来不及了,好用就行了...吧?
Stars: ✭ 471 (-14.83%)
Mutual labels:  view
Zloading
[Android] 这是一个自定义Loading View库。暂停更新
Stars: ✭ 552 (-0.18%)
Mutual labels:  view
Kotlinpleaseanimate
Kotlin, please, can you animate my views ?
Stars: ✭ 541 (-2.17%)
Mutual labels:  view

Android-RateThisApp

Build Status Download Android Arsenal

Android-RateThisApp is an library to show "Rate this app" dialog.

Screen shot

The library monitors the following status

  • How many times is the app launched
  • How long days does it take from the app installation

and show a dialog to engage users to rate the app in Google Play.

Getting Started

Dependency

dependencies {
    compile 'io.github.kobakei:ratethisapp:x.y.z'
}

x.y.z is Download

NOTICE: From 1.0.0, group ID has been changed from com.kobakei to io.github.kobakei.

Basic usage

Call RateThisApp.onCreate(Context) and RateThisApp.showRateDialogIfNeeded(Context) in your launcher activity's onCreate() method.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Monitor launch times and interval from installation
    RateThisApp.onCreate(this);
    // If the condition is satisfied, "Rate this app" dialog will be shown
    RateThisApp.showRateDialogIfNeeded(this);
}

That's all! You can see "Rate this app" dialog at an appropriate timing.

Advanced usages

Custom condition

In default, the dialog will be shown when any of the following conditions is satisfied.

  • App is launched more than 10 times
  • App is launched more than 7 days later than installation.

If you want to use your own condition, please call RateThisApp.init(Configuration) in your Application or launcher activity onCreate method.

// Custom condition: 3 days and 5 launches
RateThisApp.Config config = new RateThisApp.Config(3, 5);
RateThisApp.init(config);

Custom strings

You can override title, message and button labels.

RateThisApp.Config config = new RateThisApp.Config();
config.setTitle(R.string.my_own_title);
config.setMessage(R.string.my_own_message);
config.setYesButtonText(R.string.my_own_rate);
config.setNoButtonText(R.string.my_own_thanks);
config.setCancelButtonText(R.string.my_own_cancel);
RateThisApp.init(config);

Custom url

In default, rate button navigates to the application page on Google Play. You can override this url as below.

RateThisApp.Config config = new RateThisApp.Config();
config.setUrl("http://www.example.com");
RateThisApp.init(config);

Opt out from your code

If you want to stop showing the rate dialog, use this method in your code.

RateThisApp.stopRateDialog(this);

Callback

You can receive yes/no/cancel button click events.

RateThisApp.setCallback(new RateThisApp.Callback() {
    @Override
    public void onYesClicked() {
        Toast.makeText(MainActivity.this, "Yes event", Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onNoClicked() {
        Toast.makeText(MainActivity.this, "No event", Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onCancelClicked() {
        Toast.makeText(MainActivity.this, "Cancel event", Toast.LENGTH_SHORT).show();
    }
});

Contribute this project

If you want to contribute this project, please send pull request. In present, I need contributors who can translate resources from English/Japanese into other languages.

License

Copyright 2013-2017 Keisuke Kobayashi

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.

Author

Keisuke Kobayashi - [email protected]

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].