ratingBar demo

关于 ratingBar

参考 资料写的demo
http://www.cnblogs.com/over140/archive/2010/11/18/1880391.html
写道
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<TextView
android:id="@+id/tv_hotel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="China hotel"
android:textSize="18dp" />

<ImageView
android:id="@+id/iv_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_right" />

<TextView
android:id="@+id/tv_distance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_margin="5dp"
android:layout_toLeftOf="@+id/iv_right"
android:text="30km" />

<RatingBar
android:id="@+id/rb_stars"
style="?android:attr/ratingBarStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/tv_distance"
android:isIndicator="true"
android:numStars="6"
android:rating="5.0"
android:stepSize="1.0" />
</RelativeLayout>

猜你喜欢

转载自aking86.iteye.com/blog/1701306