Skip to content

Dreablin/GlowTextView

 
 

Repository files navigation

Android GlowTextView Widget

Download

Library add glow effect to TextView.

DEMO

demo_preview

USAGE

Using GlowTextView in your application Add dependencies in build.gradle of your module

	dependencies {
		compile 'com.riningan.widget:glowtextview:1.0'
	}

XML

<com.riningan.glowtextview.GlowTextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:padding="32dp"
        app:glowColor="@color/colorAccent"
        app:glowRadius="20dp"
        android:text="Hello world!"
        android:textColor="@android:color/black"
        android:textSize="24sp" />

Properties:

  • app:glowRadius (dimension) -> default 60f
  • app:glowColor (color) -> default WHITE

JAVA

GlowTextView glowTextView = (GlowTextView) findViewById(R.id.glowTextView);
glowTextView.setGlowRadius(float glowRadius);
glowTextView.setGlowColor(@ColorInt int glowColor);

LICENCE

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Android GlowTextView

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%