如何在TextClock android中对文本进行发光效果

时间:2014-03-21 11:50:49

标签: android android-layout responsive-design clock

任何人都可以帮助我在TextClock中制作发光效果我已尝试过此link中所述的方法!但它没有任何效果,任何人都可以帮助。

这就是我正在使用textClock的后备支持库并希望在其中发光

        <cz.vhrdina.textclockbackport.TextClock
        android:id="@+id/digitalClock"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:shadowColor="@color/red"
        android:shadowDx="0.0"
        android:shadowDy="0.0"
        android:shadowRadius="8"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="@color/white" />

1 个答案:

答案 0 :(得分:0)

我是使用此代码完成的,请确保您在设备上测试它,因为模拟器或图形查看器不支持此功能。

          <cz.vhrdina.textclockbackport.TextClock
            android:id="@+id/digitalClock"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:shadowColor="@color/shadow_color"
            android:shadowDx="1"
            android:shadowDy="1"
            android:shadowRadius="10"
            android:textColor="@color/white"
            android:textSize="30sp" />