how to get RatingBar value

前端 未结 9 2413
傲寒
傲寒 2021-02-13 18:55

how to read and display rating bar value

i[0] // should be selected value

private OnClickListener onclickbutton1 = new OnClickListener() {
    public void onCli         


        
9条回答
  •  Happy的楠姐
    2021-02-13 19:47

    RatingBar rate = (RatingBar)findViewById(R.id.R_rate);
    
    //use ratings within event listner code block
    
    float rating = rate.getRating();
    

提交回复
热议问题