Skip to content

Commit

Permalink
fix(emoji-popup-keyboard): increase emoji size
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM committed Oct 1, 2023
1 parent 6f180c0 commit 584e2c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public EmojiViewHolder(){
ImageView img=(ImageView) itemView;
img.setLayoutParams(new RecyclerView.LayoutParams(V.dp(48), V.dp(48)));
img.setScaleType(ImageView.ScaleType.FIT_CENTER);
int pad=V.dp(12);
int pad=V.dp(6);
img.setPadding(pad, pad, pad, pad);
img.setBackgroundResource(R.drawable.bg_custom_emoji);
}
Expand Down

0 comments on commit 584e2c0

Please sign in to comment.