Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AAkira/CompoundIconTextView
An android library that is able to set a vector drawable at text view pre-Lollipop.
https://github.com/AAkira/CompoundIconTextView
android android-library textview vector-drawable
Last synced: 3 months ago
JSON representation
An android library that is able to set a vector drawable at text view pre-Lollipop.
- Host: GitHub
- URL: https://github.com/AAkira/CompoundIconTextView
- Owner: AAkira
- Created: 2017-06-04T15:36:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-14T04:30:14.000Z (almost 7 years ago)
- Last Synced: 2024-06-16T05:42:16.857Z (5 months ago)
- Topics: android, android-library, textview, vector-drawable
- Language: Java
- Size: 211 KB
- Stars: 246
- Watchers: 4
- Forks: 32
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-android-ui - CompoundIconTextView - 带有icon的TextView (TextView)
README
# CompoundIconTextView
An android library that is able to set a vector drawable at text view pre-Lollipop.
[![Platform](http://img.shields.io/badge/platform-android-brightgreen.svg?style=flat)](http://developer.android.com/index.html)
[![Language](http://img.shields.io/badge/language-java-orange.svg?style=flat)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![License](http://img.shields.io/badge/license-apache2.0-lightgrey.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
[![Download CompoundIconTextView](https://api.bintray.com/packages/aakira/maven/compound-icon-textview/images/download.svg)](https://bintray.com/aakira/maven/compound-icon-textview/_latestVersion)## Preview
![PREVIEW][preview]
## Features
* Set a vector drawable at text view pre-Lollipop
## Usage
### Gradle
You should set this line in your gradle file if you set colors to vector drawable pre-Lollipop.
```gradle
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
```### Code
```Java
CompoundIconTextView tv = (CompoundIconTextView) findViewById(R.id.compoundIconTextView);
// set icon drawable
tv.setVectorDrawableTop(R.drawable.ic_android_black_24dp);
tv.setVectorDrawableLeft(R.drawable.ic_android_black_24dp);// set icon color
tv.setIconColorResource(R.color.colorPrimary);// set icon size
tv.setIconSizeResource(R.dimen.icon_size, R.dimen.icon_size);
tv.setIconSize(32, 32);// clear icon
tv.setVectorDrawableRight(CompoundIconTextView.UNDEFINED_RESOURCE);```
### Xml
```xml
```### Attributes
|attribute name|description|
|:-:|:-:|
|cit_drawableLeft|Sets a drawable or vector drawable to left of TextView|
|cit_drawableTop|Sets a drawable or vector drawable to top of TextView|
|cit_drawableBottom|Sets a drawable or vector drawable to bottom of TextView|
|cit_drawableRight|Sets a drawable or vector drawable to right of TextView|
|cit_drawableStart|Sets a drawable or vector drawable to start of TextView (for RTL)|
|cit_drawableEnd|Sets a drawable or vector drawable to end of TextView (for RTL)|
|cit_iconWidth|Sets a width of icon|
|cit_iconHeight|Sets a width of icon|
|cit_iconColor|Sets a icon color|## Setup
### Gradle
Add the dependency in your `build.gradle`
```groovy
buildscript {
repositories {
jcenter()
}
}dependencies {
compile 'com.github.aakira:compound-icon-textview:1.2.1@aar'
}
```
## Using libraries* [Material icons](https://material.io/icons/#ic_cloud_download)
## Author
### Akira Aratani
- [@_a_akira](https://twitter.com/_a_akira)
- [email protected]## License
```
Copyright (C) 2017 A.AkiraLicensed 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 athttp://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.
```[preview]: /arts/preview.jpg