public ChatActionCell(Context context) {
   super(context);
   if (textPaint == null) {
     textPaint = new TextPaint(Paint.ANTI_ALIAS_FLAG);
     textPaint.setColor(0xffffffff);
     textPaint.linkColor = 0xffffffff;
   }
   imageReceiver = new ImageReceiver(this);
   imageReceiver.setRoundRadius(AndroidUtilities.dp(32));
   avatarDrawable = new AvatarDrawable();
   textPaint.setTextSize(AndroidUtilities.dp(MessagesController.getInstance().fontSize));
 }