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.
TextViewRichDrawable alternatives and similar packages
Based on the "Performance" category.
Alternatively, view TextViewRichDrawable alternatives based on common mentions on social networks and blogs.
-
leakcanary
A memory leak detection library for Android. -
ANR-WatchDog
A simple watchdog that detects Android ANR (Application Not Responding) error and throws a meaningful exception -
AndroidGodEye
An app performance monitor(APM) , like "Android Studio profiler", you can easily monitor the performance of your app real time in browser -
Snippet
An android library to measure code execution time. No need to remove the measurement code, automatically becomes no-op in the release variants. Does not compromise with the code readability and comes with features that enhance the developer experience. -
MAT
The Eclipse Memory Analyzer is a fast and feature-rich Java heap analyzer that helps you find memory leaks and reduce memory consumption.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TextViewRichDrawable or a related project?
README
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
[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.