RichLinkPreview
RichLinkPreview copied to clipboard
Unable to create RichLinkViewTelegram fromMeta
richLinkViewTelegram.setLinkFromMeta(metaData) won't work because of next lines in richLinkViewTelegram.java
:
textViewOriginalUrl = (TextView) findViewById(R.id.rich_link_original_url);
textViewOriginalUrl.setText(main_url);
removeUnderlines((Spannable)textViewOriginalUrl.getText());
Trying to set main_url will produce an error because it is an empty string (And the only way to set it is through setLink
mehod)