似乎 RatingBar 小部件在 JellyBean 4.1style="?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>