0

如何在 textview 中的每个字母周围制作黑色边框?我试过了:

tvText.setText(android.text.Html.fromHtml("<span style=\"border:1px solid #000000\">bla</span>"));
4

1 回答 1

0

How about using a custom typeface? Check here if there is one with a border: http://www.fontsquirrel.com/fonts/list/50/50 You can then do like this:

Typeface font = Typeface.createFromAsset(getAssets(),"BLOODY.ttf");
textView.setTypeface(font);
于 2012-08-22T13:33:04.720 回答