/* * This is the source code of Telegram for Android v. 5.x.x. * It is licensed under GNU GPL v. 2 or later. * You should have received a copy of the license in this archive (see LICENSE). * * Copyright Nikolai Kudashov, 2013-2018. */ package org.telegram.ui.Components; import android.net.Uri; import android.text.style.URLSpan; import android.view.View; import org.telegram.messenger.browser.Browser; public class URLSpanReplacement extends URLSpan { public URLSpanReplacement(String url) { super(url); } @Override public void onClick(View widget) { Uri uri = Uri.parse(getURL()); Browser.openUrl(widget.getContext(), uri); } }