NekoX/TMessagesProj/src/main/java/org/telegram/ui/Components/URLSpanUserMentionPhotoView...

26 lines
663 B
Java
Raw Normal View History

2018-07-30 04:07:02 +02:00
/*
2019-01-23 18:03:33 +01:00
* This is the source code of Telegram for Android v. 5.x.x.
2018-07-30 04:07:02 +02:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
2019-01-23 18:03:33 +01:00
* Copyright Nikolai Kudashov, 2013-2018.
2018-07-30 04:07:02 +02:00
*/
package org.telegram.ui.Components;
import android.text.TextPaint;
public class URLSpanUserMentionPhotoViewer extends URLSpanUserMention {
public URLSpanUserMentionPhotoViewer(String url, boolean isOutOwner) {
super(url, 2);
}
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setColor(0xffffffff);
ds.setUnderlineText(false);
}
}