zoukankan      html  css  js  c++  java
  • Font Awesome Text 使用方法

    <!-- basic text-->
    <com.beardedhen.androidbootstrap.FontAwesomeText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        fontawesometext:fa_icon="fa-github"
        android:layout_margin="10dp" 
        android:textSize="32sp"
    />
    

    fontawesometext:fa_icon="fa-github" the icon to place, as per the Font Awesome Cheat Sheet

    android:textSize="12sp" Text size must always be in sp!

    android:textColor="@color/bbutton_primary" you can change the textColor or background to any color, including the Bootstrap colours by typing bbutton_ and the type of colour e.g. bbutton_danger for the red danger colour.

    NEW

    fontAwesomeText.setIcon("fa-heart"); change the icon programmatically

    Animations

    //get access to some FontAwesomeText items in the layout
    FontAwesomeText tv1 = (FontAwesomeText) findViewById(R.id.lblOne);
    FontAwesomeText tv2 = (FontAwesomeText) findViewById(R.id.lblTwo);
    FontAwesomeText tv3 = (FontAwesomeText) findViewById(R.id.lblThree);
    
    //flashing forever FAST
    tv1.startFlashing(this, true, FontAwesomeText.AnimationSpeed.FAST);
    
    //rotating clockwise slowly
    tv2.startRotate(this, true, FontAwesomeText.AnimationSpeed.SLOW);
    
    //rotating anti-clockwise at medium speed
    tv3.startRotate(this, false, FontAwesomeText.AnimationSpeed.MEDIUM);
    

    Flashing Animations

    startFlashing(Context context, boolean forever, AnimationSpeed speed);

    @param context the current applications context

    @param forever whether the item should flash repeatedly or just once

    @param speed how fast the item should flash, chose between FontAwesomeText.AnimationSpeed.SLOW / FontAwesomeText.AnimationSpeed.MEDIUM / FontAwesomeText.AnimationSpeed.FAST

    Rotation Animation

    startRotate(Context context, boolean clockwise, AnimationSpeed speed);

    @param context the current applications context

    @param clockwise true for clockwise, false for anti clockwise spinning

    @param speed how fast the item should flash, chose between FontAwesomeText.AnimationSpeed.SLOW / FontAwesomeText.AnimationSpeed.MEDIUM / FontAwesomeText.AnimationSpeed.FAST

  • 相关阅读:
    《硅谷之谜》读书笔记
    Google的Bigtable学习笔记(不保证正确性)
    软件开发到底是怎么一回事呢?
    如何控制自己之2016个人目标管理
    如何自适应网页的协议(http/https/……)
    数据库时间戳设计
    AngularJS-Controller的使用-读书笔记
    FIM相关报错汇总
    iPad上的Cookie到底有多长?
    【solr】join查询,跟mysql的join不一样
  • 原文地址:https://www.cnblogs.com/boundary/p/3880767.html
Copyright © 2011-2022 走看看