Giter Club home page Giter Club logo

gitter-badger / android-iconics Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mikepenz/android-iconics

0.0 2.0 0.0 3.31 MB

Android-Iconics is a library to use (almost) any alternative iconfont in your projects. It allows you to add any Android-Iconics compatible typeface-library-addon to your project and you are able to start using that font.

Home Page: http://mikepenz.github.io/Android-Iconics

License: Apache License 2.0

JavaScript 0.33% CSS 1.27% Shell 0.56% Java 97.84%

android-iconics's Introduction

#Android-Iconics Maven Central Android Arsenal

Android-Iconics is a library to use (almost) any alternative iconfont in your projects. It allows you to add any Android-Iconics compatible typeface-library-addon to your project and you are able to start using that font.

Fonts included by default:

  • FontAwesome
  • Material Design Icons

Fonts available as addon:

  • Meteocons
  • Octicons
  • Community Material Icons

__ UPGRADE FROM < 1.0.0: The package of the views was changed to com.mikepenz.iconics.view.*. Changed maven group. The group was changed from com.mikepenz.iconics to com.mikepenz. You can get all updates via the new one compile 'com.mikepenz:iconics:1.0.1@aar' (also check to update your typeface addon dependencies)

__ NOTE: UPGRADE FROM < 0.7.5 Remove the Google Material Design Icons from your dependencies because it's now default and included within the main Android-Iconics package

Let's start with some awesome screenshots ;)

Image Image

##Include in your project The Android-Iconics Library is pushed to [Maven Central], so you just need to add the following dependency to your build.gradle.

dependencies {
	compile 'com.mikepenz:iconics:1.1.0@aar'
}

##How to use

Use it as Drawable anywhere. Create it like this:

new IconicsDrawable(this, FontAwesome.Icon.faw_android).color(Color.RED).sizeDp(24)

You can use these icons in any IconicTextView just by defining the icon within the text. An example for FontAwesome looks like this: {faw-github}. You see pretty easy right?

Or use it on any text by using the simple builder pattern. Here's the shortest possible sample:

new Iconics.IconicsBuilder().ctx(this).on(YOUR_TEXT_VIEW).build();

Define icons in a text as following:

Some great text with a {faw-android} font awesome icon and {met-wind} meteocons icons.

There are also custom views which allow you to use an Android-Iconics icon out of the box.

IconicsImageView

<com.mikepenz.iconics.view.IconicsImageView
        android:layout_width="72dp"
        android:layout_height="72dp"
        app:iiv_icon="gmd-favorite-outline"
        app:iiv_color="@android:color/holo_red_dark"
        />

IconicsTextView

<com.mikepenz.iconics.view.IconicsTextView
        android:text="abc{hif-test}defgh{faw-adjust}ijk{fon-test1}lmnopqrstuv{fon-test2}wxyz"
        android:textColor="@android:color/black"
        android:layout_width="wrap_content"
        android:layout_height="56dp"
        android:textSize="16sp"/>

IconicsButton

<com.mikepenz.iconics.view.IconicsButton
        android:text="{faw-adjust} Button"
        android:layout_width="120dp"
        android:layout_height="60dp"/>

For more samples look at the source code of the sample.

##Use typeface-library-addons One basic function of this library is the feature to drop in new typefaces on the go. The default font of this project is FontAwesome (http://fontawesome.io), but you can create and add as many as you like.

The main idea is that the community can create libraries which can be used without the need of an extra library.

So how does it work? Just add the dependency of any and as many typface-library-addons in your build.gradle just beneath the android-iconics dependency.

dependencies {
	compile 'com.mikepenz:iconics:1.1.0@aar'
	compile 'com.mikepenz:octicons-typeface:2.2.0@aar'
	compile 'com.mikepenz:meteocons-typeface:1.1.1@aar'
	compile 'com.mikepenz:community-material-typeface:1.0.0@aar'
}

To enable them for the IconicsTextView too follow the steps under Register typeface

##Advanced usage

###working with multiple typeface-library-addons and icons In some cases you will use multiple typefaces. It is really easy to decide which icon of which typeface-library-addon should be used. Each of those got a unique 3-character long identifier which is the prefix of every single icon. FontAwesome - "faw" Meteocons - "met"

Evertime you want to use an icon in a text just write {faw-adjust}, ...

###Register typeface In some cases you will love to use a typeface-library-addon in your IconicTextView and everywhere else without the need of adding it as typeface all the time.

Just override your Application and register your additional fonts like this:

public class CustomApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        Iconics.registerFont(new Meteoconcs());
        Iconics.registerFont(new Octicons());
        Iconics.registerFont(new CommunityMaterial());
        Iconics.registerFont(new CustomFont());
    }
}

and set it in your AndroidManifest.xml as name

    <application
        android:name="com.mikepenz.iconics.sample.CustomApplication"
        ...

###Advanced IconicsBuilder Everything is easy and simple. Right? But now you got a single icon within your textview and you need additional styling? Just define the style for all icons or only a specific one. You can find this in the PlaygroundActivity of the sample too.

new Iconics.IconicsBuilder().ctx(this)
                .style(new ForegroundColorSpan(Color.WHITE), new BackgroundColorSpan(Color.BLACK), new RelativeSizeSpan(2f))
                .styleFor(FontAwesome.Icon.faw_adjust, new BackgroundColorSpan(Color.RED))
                .on(tv1)
                .build();

###String icon-key or typeface enum Sometimes you won't like to use the icon-key ("faw-adjust") like this, but use the enum provided by a specific font. Both is valid:

  new IconicsDrawable(this, "faw-adjust").actionBarSize()
  new IconicsDrawable(this, FontAwesome.Icon.faw_adjust).sizeDp(24)

##Available fonts

##Demo You can try the sample application out. It's on Google Play ;) https://play.google.com/store/apps/details?id=com.mikepenz.iconics.sample

##Contribute The easiest way to contribute is by creating a new typeface-library addon. This is a pretty easy step. Just look into the meteocons-typeface-library project within this repository. You will see you only need 2 things. The font itself (the .ttf file). And the Typeface definition which is an implementation of the ITypeface class.

Just fill in the required information, create the mapping and it works. To help the users using your typeface-library-addon you should upload it to maven and let me know so i can add it to the list of available fonts.

So the hardest part is to create the mapping. I also have a solution for this problem. Just use the awesome service of http://fontello.com/ create a typeface-library-addon of one of the provided fonts there or upload your own. If missing customize the names. Choose a good 3-character long prefix (css prefix under settings) and download the webfont. This will include the .ttf to use, and a file called test-codes.css under css. This repository includes a small helper to create the enum-list for the Typeface definition class. (You can find it under /DEV/extractor). Just drop the test-codes.css in the same folder. rename it to test.css and run the extractor.js with node extractor.js. This will output the correct list.

If something is unclear, don't be afraid to drop an e-mail, or create an github issue.

##Credits

  • Joan Zapata He is the creator of Android-Iconify which gave me the idea of this project. It implements some really great concepts, and i only tried to improve them and give it some more flexibility.

#Developed By

#License

Copyright 2015 Mike Penz

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.

android-iconics's People

Contributors

h6ah4i avatar log-tag avatar mikepenz avatar shawnhwei avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.