如何在 textview 中的每个字母周围制作黑色边框?我试过了:
tvText.setText(android.text.Html.fromHtml("<span style=\"border:1px solid #000000\">bla</span>"));
如何在 textview 中的每个字母周围制作黑色边框?我试过了:
tvText.setText(android.text.Html.fromHtml("<span style=\"border:1px solid #000000\">bla</span>"));
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);