2011年5月24日 星期二

Rating Bar物件

Rating Bar物件    <RatingBar
        android:id="@+id/ratingbar"
       
android:layout_width="wrap_content"
       
android:layout_height="wrap_content"
       
android:numStars="5"
       
android:stepSize="1.0"/>


    RatingBar ratingbar = (RatingBar) findViewById(R.id.ratingbar);
    ratingbar
.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {
       
public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
           
Toast.makeText(HelloFormStuff.this, "New Rating: " + rating, Toast.LENGTH_SHORT).show();
       
}
    });

沒有留言:

張貼留言