android.widget.RatingBar を使用します。
RatingBarを使ったサンプル
■ソースコード
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.ratingbar);
}
■レイアウト
<FrameLayout 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"
    android:background="#ffffff"
    android:padding="0dp" >
    <RatingBar
        android:id="@+id/sample_ratingbar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:numStars="5" />
</FrameLayout>
 
 
 
 
 
 
0 件のコメント:
コメントを投稿