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

Starting with iOS7 the URL has changed and cannot direct for the review page but only to the app itms-apps://itunes.apple.com/app/idAPP_ID Where APP_ID need to be replaced with your Application ID. Based on the App ID from the question it would be the following itms-apps://itunes.apple.com/app/id353372460 Notice the id in front of the number … that string … Read more

Android RatingBar change star colors [closed]

It’s a little complicated at the mentioned blog, I’ve used a similar but simplier way. You do need 3 star images (red_star_full.png, red_star_half.png and red_star_empty.png) and one xml, that’s all. Put these 3 images at res/drawable. Put there the following ratingbar_red.xml: <?xml version=”1.0″ encoding=”UTF-8″?> <layer-list xmlns:android=”http://schemas.android.com/apk/res/android”> <item android:id=”@android:id/background” android:drawable=”@drawable/red_star_empty” /> <item android:id=”@android:id/secondaryProgress” android:drawable=”@drawable/red_star_half” /> <item … Read more

Turn a number into star rating display using jQuery and CSS

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 repeat-x; width: 80px; height: 16px; } span.stars span { background-position: 0 0; } Image (source: ulmanen.fi) Note: do NOT hotlink to the above image! Copy … Read more