android - Fabric Digits - Align app icon to left -


i need align app icon left. icon centered.

this code set theme digits

twitterauthconfig authconfig = new twitterauthconfig(twitter_key, twitter_secret); digits.builder digitsbuilder = new digits.builder().withtheme(r.style.customdigitstheme); fabric.with(this, new twittercore(authconfig), digitsbuilder.build()); 

customdigitstheme:

<style name="customdigitstheme" parent="apptheme">          <item name="android:textcolorprimary">@android:color/black</item>          <item name="android:textcolorsecondary">@android:color/darker_gray</item>          <item name="android:windowbackground">@android:color/white</item>          <item name="android:textcolorlink">@color/red_button</item>          <item name="coloraccent">@color/red_button</item>          <item name="dgts__logodrawable">@drawable/logo_app</item>      </style> 

thanks!


Comments

  1. This article is a creative one and the concept is good to enhance our knowledge. Waiting for more updates.
    Android Development Course Online
    Learn Android Online

    ReplyDelete

Post a Comment

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -