-2
我正在研究夜燈應用程序。我想將亮度應用於textView。我知道如何設置屏幕亮度,但我無法確定如何將其設置在textView上。Android-如何將亮度設置爲textView?
我正在研究夜燈應用程序。我想將亮度應用於textView。我知道如何設置屏幕亮度,但我無法確定如何將其設置在textView上。Android-如何將亮度設置爲textView?
需要嘗試的幾件事:
嘗試使用文字陰影它會幫助你。
並與androicode約定。
謝謝。
可以在XML
使用alpha
屬性TextView
:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
android:alpha="0.75"/>
凡Alpha
值是0和1之間(0:完全消退,1:正常) 這裏,0.75 alpha值將給25%的褪色百分比TextView