自定义文字样式有两种颜色

时间:2016-07-21 08:49:31

标签: java android android-studio colors background-color

我想知道可以像这样设置文字:

Text style example

注意:我使用的是shadow,但它对我来说似乎没什么用。我想得到一张如上图所示的双色文字。

这是我的代码:

<com.example.fabulous.comic.CustomTXT
    android:textColor="@color/white"
    android:shadowColor="@color/blacke"
    android:layout_margin="2dp"
    android:id="@+id/txt"
    android:text="hellow"
    android:layout_width="match_parent"/>
    android:layout_height="wrap_content"/>

4 个答案:

答案 0 :(得分:3)

是的,您可以创建这样的文字,请参阅此处的previous详细解答。

将文字颜色设置为white,将轮廓颜色设置为black.

答案 1 :(得分:0)

为什么不选择自定义颜色的自定义字体? 此link可能会帮助您自定义字体。

答案 2 :(得分:0)

试试这个

 <TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world"
android:textColor="@color/white"
android:textSize="20sp"
android:shadowColor="@color/black" 
android:shadowRadius="2"/>
  

您可以根据需要增加半径并根据需要增加颜色

enter image description here

  

您还可以尝试使用字体.....

用于谷歌的Montserrat.ttp下载,你也使用了更多字体..

    String fontPath = "fonts/mont.ttf";
    Typeface tf = Typeface.createFromAsset(getAssets(), fontPath);
    btn_reload.setTypeface(tf);

答案 3 :(得分:0)

在TextView中使用阴影应该可以获得轮廓效果:

android:shadowColor="#000000"
android:shadowDx="1.5"
android:shadowDy="1.3"
android:shadowRadius="1.6"
android:text="CCC"
android:textAllCaps="true"
android:textColor="@android:color/white"

您还可以使用WhatTheFont等网络服务查找任何图片中使用的警察。我用你的照片找到最接近的匹配并得到了这个答案:

WhatTheFont answer

警察 Minutia大纲,你可以find it here

我不确定这是你所追求的解决方案,但是使用这个警察会让你得到你所拥有的照片。

如果你不想使用字体,你可以简单地使用一些CSS来设置你的文字样式,webView to use html/css就像这样:

&#13;
&#13;
.strokeme
{
    color: white;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    font-size: 250%;
}
&#13;
<div class="strokeme">
    Is this what you were looking for?
</div>
&#13;
&#13;
&#13;