在文本android的边界不在文本视图而不是阴影

时间:2015-12-03 05:58:59

标签: java android textview

我试图在文本视图中找到一个效果,就像下面的图像一样。

这是一个带文本边框的文本视图: enter image description here

任何人都可以建议我得到这种效果。 在此先感谢:)

1 个答案:

答案 0 :(得分:0)

除其他事项外,

MagicTextView会做文字大纲。

enter image description here

<com.qwerjk.better_text.MagicTextView
    xmlns:qwerjk="http://schemas.android.com/apk/res/com.qwerjk.better_text"
    android:textSize="78dp"
    android:textColor="#ff333333"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    qwerjk:strokeColor="#FFff0000"
    qwerjk:strokeJoinStyle="miter"
    qwerjk:strokeWidth="5"
    android:text="Magic" />

注意:我做了这个,并且为了未来的旅行者发布的内容比OP更多。  它是临界垃圾邮件,但是在主题上,也许可以接受?

<强>来源 https://stackoverflow.com/posts/10294290/edit