mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
26 lines
836 B
Java
26 lines
836 B
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
import android.content.Context;
|
|
import android.text.SpannableString;
|
|
import android.text.style.UnderlineSpan;
|
|
import android.util.AttributeSet;
|
|
import android.widget.TextView;
|
|
|
|
public class LinkTextView extends TextView {
|
|
public LinkTextView(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
@Override
|
|
public void setText(CharSequence text, BufferType type) {
|
|
SpannableString content = new SpannableString(text + " \u00BB");
|
|
content.setSpan(new UnderlineSpan(), 0, text.length(), 0);
|
|
|
|
super.setText(content, BufferType.SPANNABLE);
|
|
}
|
|
}
|