textview-rich-drawable

Additional

Language
Java
Version
0.2.0 (Dec 27, 2016)
Created
Oct 19, 2016
Updated
Jan 10, 2020 (Retired)
Owner
Oleksandr Tolstykh (a-tolstykh)
Contributors
Oleksandr Melnykov (makovkastar)
Wynne Plaga (turing-tech)
Oleksandr Tolstykh (a-tolstykh)
Oleksandr Tolstykh (oleksandr-tolstykh)
Jens Knutson (jensck)
5
Activity
Badge
Generate
Download
Source code

TextViewRichDrawable

This is a tiny library which empowers TextView's (and its inheritors) compound drawables with size specifying, vector support and tinting. Currently empowers next Android views with RichDrawable support:

  • Button -> ButtonRichDrawable
  • CheckBox -> CheckBoxRichDrawable
  • EditText -> EditTextRichDrawable
  • RadioButton -> RadioButtonRichDrawable
  • TextView -> TextViewRichDrawable

This library is just an extension of Android's TextView.

Usage

  • Enable vector Drawable support for pre Lollipop devices (more details):
 android {
   defaultConfig {
     vectorDrawables.useSupportLibrary = true
    }
 }
  • In XML layout:
    <com.tolstykh.textviewrichdrawable.TextViewRichDrawable
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Some text"
        app:compoundDrawableHeight="24dp"
        app:compoundDrawableWidth="24dp"
        app:drawableTopVector="@drawable/some_vector_drawble"
        app:drawableEndVector="@drawable/another_vector_drawable"
        app:drawableTint="@color/colorAccent" />
  • All customizable attributes:
    <declare-styleable name="TextViewRichDrawable">
        <attr name="compoundDrawableWidth" format="dimension"/>
        <attr name="compoundDrawableHeight" format="dimension"/>
        <attr name="drawableStartVector" format="reference" />
        <attr name="drawableTopVector" format="reference" />
        <attr name="drawableEndVector" format="reference" />
        <attr name="drawableBottomVector" format="reference" />
        <attr name="drawableTint" format="reference" />
    </declare-styleable>

Example

Download

repositories {
    jcenter()
}
compile 'com.tolstykh.textviewrichdrawable:textview-rich-drawable:0.3.2'

License

Copyright 2016 Oleksandr Tolstykh

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.