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.
ユーザーが投票できる評価バーがあります。バーで星の合計を選択し、ボタンを押して送信すると、評価バーが「投票していただきありがとうございます」などのテキストビューに置き換えられます。
Javaコードでこれを行うにはどうすればよいですか?
また、ボーナスポイントについては、これを移行するための簡単な方法があります。たぶん、テキストビューはフェードインしますか?
setVisibilityレイアウトを表示/非表示にするために、またはあなたの場合RatingBarはTextView
setVisibility
RatingBar
TextView
XMLファイルにを追加しRatingBarますTextView。最初にテキストビューの可視性を設定しGONEます。
GONE
送信ボタンを押したら、次のコードを追加します。
textViewobject.setVisibility(View.VISIBLE); ratingBarobject.setVisibility(View.GONE);