Android Kotlin Dynamic RatingBar - 设置星数
Android Kotlin Dynamic RatingBar - setting number of stars
我正在尝试通过 Kotlin 动态添加带有评级条的产品列表以获取其评级。我能够添加评级栏;但是,评级栏显示 7 星。我想要 5 颗星。我尝试使用 *.numStars = 5 但我仍然得到 7 颗星,如下图所示的爆米花。
fun populateUIWithRatingInfo() {
for (orderItem in orderItemsList) {
val dynamicTextView = TextView(requireContext())
dynamicTextView.text = orderItem.title
binding.productRatingList.addView(dynamicTextView)
val dynamicRatingBar = RatingBar(requireContext())
dynamicRatingBar.numStars= 5
binding.productRatingList.addView(dynamicRatingBar)
}
}
答案:下面打勾的答案是正确的。由于它没有描述如何动态地做到这一点,我将 post 一段代码来展示如何将宽度设置为评级栏的 wrap-content。
dynamicRatingBar.layoutParams = LinearLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT
)
根据android documentation,您需要将layout_width
属性设置为wrap_content
public void setNumStars (int numStars):
Sets the number of stars to show. In order for these to be shown properly, it is recommended the layout width of this widget be wrap content.
我正在尝试通过 Kotlin 动态添加带有评级条的产品列表以获取其评级。我能够添加评级栏;但是,评级栏显示 7 星。我想要 5 颗星。我尝试使用 *.numStars = 5 但我仍然得到 7 颗星,如下图所示的爆米花。
fun populateUIWithRatingInfo() {
for (orderItem in orderItemsList) {
val dynamicTextView = TextView(requireContext())
dynamicTextView.text = orderItem.title
binding.productRatingList.addView(dynamicTextView)
val dynamicRatingBar = RatingBar(requireContext())
dynamicRatingBar.numStars= 5
binding.productRatingList.addView(dynamicRatingBar)
}
}
答案:下面打勾的答案是正确的。由于它没有描述如何动态地做到这一点,我将 post 一段代码来展示如何将宽度设置为评级栏的 wrap-content。
dynamicRatingBar.layoutParams = LinearLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT
)
根据android documentation,您需要将layout_width
属性设置为wrap_content
public void setNumStars (int numStars): Sets the number of stars to show. In order for these to be shown properly, it is recommended the layout width of this widget be wrap content.