문제

In my xml I set android:stepSize="1" but when I implement it. It still show 1.0.

how to change it to 1?

rtnCafe.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {

        @Override
        public void onRatingChanged(RatingBar ratingBar, float rating,
                boolean fromUser) {
             Log.i("rating",""+rtnCafe.getRating());
             Toast.makeText(getApplicationContext(), "rating " +rtnCafe.getRating(), Toast.LENGTH_LONG).show();
             txtLove.setText(""+rtnCafe.getRating());

        }
    });
도움이 되었습니까?

해결책

You can just cast it to int like,

txtLove.setText(""+(int)rtnCafe.getRating());

다른 팁

simply add (int) before rtnCafe.getRating(...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top