似乎带有style="?android:attr/ratingBarStyleSmall"
和
的RatingBar小部件
?android:attr/ratingBarStyleIndicator
没有使用JellyBean 4.1。它显示在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>