rating

How do you to check if a user has rated your app on the Google Play?

℡╲_俬逩灬. 提交于 2019-11-26 07:28:45
问题 I want to check to see if a user has rated my app on the Google Play, not how many stars, just if they have. And if they haven\'t I will prompt them with a dialog asking them to rate it with this code: startActivity( new Intent( Intent.ACTION_VIEW, Uri.parse(\"market://details?id=packagename\") ) ); 回答1: No. You cannot do this. And this is a good thing too -- otherwise you will be able to influence rating by giving people who rated it rewards and such. Additionally, developers would be able

ITunes review URL and iOS 7 (ask user to rate our app) AppStore show a blank page

泪湿孤枕 提交于 2019-11-26 06:09:59
问题 Does anybody knows if the technique used to ask the user to rate our app and open for him the App Store directly on the rating page is still working on iOS 7 ? I used to open this url from my app : itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=353372460&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software But it looks like it\'s not working anymore (AppStore show a blank page). I have also tried this url wihout luck: http://itunes.apple

Android RatingBar change star colors [closed]

对着背影说爱祢 提交于 2019-11-26 03:03:48
问题 How can i change the star colors and how can i change the size of the stars ? 回答1: Step #1: Create your own style, by cloning one of the existing styles (from $ANDROID_HOME/platforms/$SDK/data/res/values/styles.xml ), putting it in your own project's styles.xml , and referencing it when you add the widget to a layout. Step #2: Create your own LayerDrawable XML resources for the RatingBar , pointing to appropriate images to use for the bar. The original styles will point you to the existing

Turn a number into star rating display using jQuery and CSS

给你一囗甜甜゛ 提交于 2019-11-26 02:42:22
I have been looking at jquery plugin and was wondering how to adapt that plugin to turn a number (like 4.8618164) into a 4.8618164 stars filled out of 5. Basically interpreting a number <5 into stars filled in a 5-star rating system using jQuery/JS/CSS. Note that this would only display/show the stars rating from an already available number and not accept new ratings submissions. Tatu Ulmanen Here's a solution for you, using only one very tiny and simple image and one automatically generated span element: CSS span.stars, span.stars span { display: block; background: url(stars.png) 0 -16px

Turn a number into star rating display using jQuery and CSS

我与影子孤独终老i 提交于 2019-11-26 01:50:45
问题 I have been looking at jquery plugin and was wondering how to adapt that plugin to turn a number (like 4.8618164) into a 4.8618164 stars filled out of 5. Basically interpreting a number <5 into stars filled in a 5-star rating system using jQuery/JS/CSS. Note that this would only display/show the stars rating from an already available number and not accept new ratings submissions. 回答1: Here's a solution for you, using only one very tiny and simple image and one automatically generated span