Android TextView上的内部阴影

时间:2011-11-01 11:26:26

标签: android textview android-gui

是否可以在Android中的TextView文本中添加内部阴影,如下所示:

http://i.stack.imgur.com/88Mxd.png

谢谢!

3 个答案:

答案 0 :(得分:7)

MagicTextView会做内心阴影。

enter image description here

    <com.qwerjk.better_text.MagicTextView
        xmlns:qwerjk="http://schemas.android.com/apk/res/com.qwerjk.better_text"
        android:textSize="42dp"
        android:textColor="#FFffff00"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:padding="10dp"
        qwerjk:innerShadowDy="3"
        qwerjk:innerShadowColor="#FF000000"
        qwerjk:innerShadowRadius="5"
        android:text="InnerShadow" />

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

答案 1 :(得分:2)

对于暗影效果:

 <TextView
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="5sp"
    android:paddingTop="15sp"
    android:paddingBottom="15sp"
    android:typeface="normal"
    android:text="I'm normal (bold) font but I have a shadow"
    android:textSize="16sp"
    android:textStyle="bold"
    android:shadowColor ="#0f0f0f"
    android:shadowRadius="1.6"
    android:shadowDx="1.5"
    android:shadowDy="1.3"
    android:textColor="#000000"
    android:background="#ffffff"
    />

或者,您可以使用自己的字体,将它们放在res / assets文件夹中:

TextView txt = (TextView) findViewById(R.id.custom_font);   
Typeface font = Typeface.createFromAsset(getAssets(), "my_font.ttf");  
txt.setTypeface(font);

或查看以下链接了解详情:

http://www.barebonescoder.com/2010/05/android-development-using-custom-fonts/

http://www.giantflyingsaucer.com/blog/?p=1421

答案 2 :(得分:1)

这与我几个月前提出的问题重复:Is there a way to add inner shadow to a TextView on Android?

此刻没有正确的方法。但是如果你尝试使用文本颜色的alpha和投影,你最终可能会有一些接近内部阴影的东西。