Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个评分栏,允许用户投票。我希望他们选择栏上的星级总数,点击按钮提交,提交后,评级栏被替换为 TextView,上面写着“谢谢你的投票!”
我怎样才能在 Java 代码中做到这一点?
此外,对于奖励积分,是否有一种快速的方法来实现这一转变。也许文本视图淡入?
您可以使用setVisibility可见/不可见的布局或在您的情况RatingBar下TextView
setVisibility
RatingBar
TextView
在您的 XML 文件中添加RatingBar一个TextView. 最初设置 textview 可见性GONE。
GONE
按提交按钮添加此代码:
textViewobject.setVisibility(View.VISIBLE); ratingBarobject.setVisibility(View.GONE);