开发者社区> 问答> 正文

安卓开发如何实现星级评价

想做一个评价功能 有星级评价 想问的就是 选中五星 怎么让他变成数字 往接口里传
谁有这方面的例子

展开
收起
爵霸 2016-05-27 08:25:46 2222 0
1 条回答
写回答
取消 提交回答
  • 1、MainActivity.java

    public class MainActivity extends Activity {
    
        private RatingBar mRatingBar;
    
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            mRatingBar = (RatingBar) findViewById(R.id.ratingbar);
            mRatingBar.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {
    
                @Override
                public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
                    Toast.makeText(MainActivity.this, "评价了" + rating + "星", Toast.LENGTH_SHORT).show();
                }
            });
        }
    }

    2、activity_main.xml

    <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" >
    
        <RatingBar
            android:id="@+id/ratingbar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:numStars="5"
            android:rating="0"
            android:stepSize="1" />
    
    </RelativeLayout>
    2019-07-17 19:16:53
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
58同城Android客户端Walle框架演进与实践之路 立即下载
Android组件化实现 立即下载
蚂蚁聚宝Android秒级编译——Freeline 立即下载