Example usage for android.support.v4.media RatingCompat RATING_NONE

List of usage examples for android.support.v4.media RatingCompat RATING_NONE

Introduction

In this page you can find the example usage for android.support.v4.media RatingCompat RATING_NONE.

Prototype

int RATING_NONE

To view the source code for android.support.v4.media RatingCompat RATING_NONE.

Click Source Link

Document

Indicates a rating style is not supported.

Usage

From source file:com.inpen.shuffle.model.MutableMediaMetadata.java

public void setUnrated() {
    RatingCompat unratedRating = RatingCompat.newUnratedRating(RatingCompat.RATING_NONE);

    metadata = new MediaMetadataCompat.Builder(metadata)
            .putRating(MediaMetadataCompat.METADATA_KEY_USER_RATING, unratedRating).build();
}