Skip to content

Commit

Permalink
fx
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishan09811 authored Feb 8, 2024
1 parent 54caf22 commit d647491
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ private void showBottomSheet(GameMetadata game) {
TextView gameTitleTextView = bottomSheetView.findViewById(R.id.game_title);
gameTitleTextView.setText(game.getTitle());

MaterialShapeableImageView gameIconImageView = bottomSheetView.findViewById(R.id.game_icon);
ShapeableImageView gameIconImageView = bottomSheetView.findViewById(R.id.game_icon);
gameIconImageView.setImageBitmap(game.getIcon());

TextView gamePublisherTextView = bottomSheetView.findViewById(R.id.game_publisher);
TextView gamePublisherTextView = bottomSheetView.findViewById(R.id.game_author);
gamePublisherTextView.setText(game.getPublisher());

bottomSheetDialog.show();
Expand Down

0 comments on commit d647491

Please sign in to comment.