This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
name = Sebring | |
[core] | |
editor = notepad | |
[alias] | |
l = log --color --graph --abbrev-commit --branches --pretty=format:'%C(red)%h%Creset -%C(yellow)%d%Creset %s %C(green)(%cr) %C(cyan)<%an>%Creset' | |
ll = log --name-status --abbrev-commit --pretty=format:'%C(red)%h%Creset %C(yellow)% d%Creset%C(green) (%cr)%C(cyan) <%an>%Creset%n%s' | |
s = status | |
d = diff |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.Context; | |
import android.text.Html; | |
import android.text.method.LinkMovementMethod; | |
import android.util.AttributeSet; | |
import android.widget.TextView; | |
public class HtmlTextView extends TextView { | |
public HtmlTextView(Context context) { | |
super(context); |