我已阅读了如何从here制作自定义评级栏。但我想制作从服务器检索图像的评级栏。
有可能吗?怎么样?
答案 0 :(得分:1)
它可能不是确切的,但绝对服务于您的目的与轻微添加代码。
以下是示例代码
RatingBar mRatingBar = (RatingBar) findViewById(R.id.ratingbar);
mRatingBar.setStarEmptyDrawable(getResources().getDrawable(R.mipmap.star_empty));
mRatingBar.setStarHalfDrawable(getResources().getDrawable(R.mipmap.star_half));
mRatingBar.setStarFillDrawable(getResources().getDrawable(R.mipmap.star_full));
mRatingBar.setStarCount(5);
mRatingBar.setStar(2.5f);
mRatingBar.halfStar(true);
mRatingBar.setmClickable(true);
mRatingBar.setStarImageWidth(120f);
mRatingBar.setStarImageHeight(60f);
mRatingBar.setImagePadding(35);
mRatingBar.setOnRatingChangeListener(
new RatingBar.OnRatingChangeListener() {
@Override
public void onRatingChange(float RatingCount) {
Toast.makeText(MainActivity.this, "the fill star is" + RatingCount, Toast.LENGTH_SHORT).show();
}
}
);
您可以在 setStars 中使用自己的服务器图片。您需要做的就是将您的图像从服务器转换为可绘制的
这是gradle
compile 'com.hedgehog.ratingbar:app:1.1.2'
有关详细说明和更新版本,请使用此github-link
请尝试一下,让我知道您的意见
答案 1 :(得分:0)
正如您已经提到了答案here,如果这是您的方式那么这是不可能的,因为您无法在运行时将文件放在Drawable文件夹中,因为 R.java 文件在编译时生成。