All Projects → iamBedant → OutlineTextView

iamBedant / OutlineTextView

Licence: MIT license
Android TextView with outline

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to OutlineTextView

ProgressText
A text progress bar with animation effect, highly customized.
Stars: ✭ 13 (-77.97%)
Mutual labels:  textview
LicenseTextView
Custom Lincese TextView for android
Stars: ✭ 31 (-47.46%)
Mutual labels:  textview
CheckableTextView
A simple and flexible Checked TextView or Checkable TextView
Stars: ✭ 108 (+83.05%)
Mutual labels:  textview
android-material-design-in-practice
A project to demonstrate the latest material design principles with simple examples. It has additional examples on how to easily scale texts on different screen sizes without extra effort.
Stars: ✭ 67 (+13.56%)
Mutual labels:  textview
Hyena
鬣狗快速开发库(2018年6月停止维护)
Stars: ✭ 21 (-64.41%)
Mutual labels:  textview
illustrator-scripts
Set of scripts to improve Icons workflow
Stars: ✭ 26 (-55.93%)
Mutual labels:  stroke
FormToolbar
Simple, movable and powerful toolbar for UITextField and UITextView.
Stars: ✭ 85 (+44.07%)
Mutual labels:  textview
Android-SGTextView
同时带字体描边 渐变 阴影的TextView - both have stroker, gradient and shadow TextView
Stars: ✭ 18 (-69.49%)
Mutual labels:  textview
hat-view
Allow to put "hat" on TextView. Inspired by Telegram appbar title with Santa Claus hat 🎅🏻
Stars: ✭ 51 (-13.56%)
Mutual labels:  textview
STTextView
📝 STTextView is a light-weight library that adds a placeholder to the UITextView.
Stars: ✭ 36 (-38.98%)
Mutual labels:  textview
FreeText
Android 字体 文字 特效 动画效果
Stars: ✭ 140 (+137.29%)
Mutual labels:  textview
TextViewSetWordSpace
Android设置TextView字间距
Stars: ✭ 18 (-69.49%)
Mutual labels:  textview
a11y-outline
web extension to navigate document outlines easily
Stars: ✭ 25 (-57.63%)
Mutual labels:  outline
ToolTipPopupWordTV
ToolTipopupWordTV is an Open Source Android library that allows developers to easily open a popup with details by select a word from a textview.
Stars: ✭ 41 (-30.51%)
Mutual labels:  textview
aerial.nvim
Neovim plugin for a code outline window
Stars: ✭ 485 (+722.03%)
Mutual labels:  outline
MaterialTextField
Android EditText designed to match Material.IO Design Guidelines of 2019. RTL supported.
Stars: ✭ 41 (-30.51%)
Mutual labels:  textview
TextViewPlus
an android library for setting custom font in xml layout
Stars: ✭ 27 (-54.24%)
Mutual labels:  textview
embedded-text
Multiline TextBox for the embedded-graphics Rust crate
Stars: ✭ 35 (-40.68%)
Mutual labels:  textview
strokeText.js
Simple, pixel-perfect text stroking for the web.
Stars: ✭ 30 (-49.15%)
Mutual labels:  stroke
Socially
Socially is a textView which is able to create separate clickable views according to your requirements.
Stars: ✭ 28 (-52.54%)
Mutual labels:  textview

OutlineTextView

Android TextView with Outline/Stroke

License

Example

Example 1     
Example 2     

Quick Setup

1. Include library

Using Gradle

OutlineTextView is currently available in on Jitpack so add the following line before every other thing if you have not done that already.

allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}

Then add the following line

dependencies {
	implementation 'com.github.iamBedant:OutlineTextView:1.0.5'
}

Using Maven

Also add the following lines before adding the maven dependency

<repositories>
	<repository>
		   <id>jitpack.io</id>
		   <url>https://jitpack.io</url>
	</repository>
</repositories>

Then add the dependency

<dependency>
	    <groupId>com.github.iamBedant</groupId>
	    <artifactId>OutlineTextView</artifactId>
	    <version>1.0.4</version>
</dependency>

Example

<com.iambedant.text.OutlineTextView
  android:id="@+id/imageView23"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="2"
  android:textColor="@android:color/white"
  android:textSize="36sp"
  app:outlineColor="#53D1A1"
  app:outlineWidth="0.7" />

License

OutlineTextView is distributed under the MIT license. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].