RatingBar ウィジェットがJellyBean 4.1 で動作していないようですstyle="?android:attr/ratingBarStyleSmall"
。
?android:attr/ratingBarStyleIndicator
Eclipse-ADT UI エディターには表示されますが、実際のデバイスには表示されません。カスタムビューに頼らなくても、これを修正できますか? ありがとう
注: 以前のプラットフォームでは問題なく動作していました。Jellybean にのみ表示されません。
コード:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<RatingBar
android:id="@+id/ratingBar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="33dp"
style="?android:attr/ratingBarStyleIndicator"
/>
</RelativeLayout>