Posts

Showing posts with the label Dependencies

Android Bootstrap - Bootstrap UI widgets

Image
Android Bootstrap is an Android library which provides custom views styled according to the Twitter Bootstrap Specification . This allows you to spend more time on development rather than trying to get a consistent theme across your app, especially if you are already familiar with the Bootstrap Framework. Quick Start Add the following dependency to your build.gradle, ensuring you replace 'X.X.X' with the latest version on the button above: dependencies { compile ' com.beardedhen:androidbootstrap:{X.X.X} ' }   You should also override your application class with the following: public class SampleApplication extends Application { @Override public void onCreate () { super . onCreate(); TypefaceProvider . registerDefaultIconSets(); } }   You should then checkout the library and investigate the sample code, which covers most of the features. The sample app is also available on Google Play . Support If you have...