Popularity
2.9
Stable
Activity
0.0
Stable
134
7
22

Description

This is a tiny library which empowers TextView's compound drawables with size specifying and vector support.

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

Programming language: Java
License: Apache License 2.0
Tags: Performance     TextView     Vector     Compound_drawable    
Latest version: v0.3.2

TextViewRichDrawable alternatives and similar packages

Based on the "Performance" category.
Alternatively, view TextViewRichDrawable alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of TextViewRichDrawable or a related project?

Add another 'Performance' Package

README

TextViewRichDrawable Android Arsenal

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

[TextView-rich-drawable](demo_screenshot.png)

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.


*Note that all licence references and agreements mentioned in the TextViewRichDrawable README section above are relevant to that project's source code only.