Skip to content

Instantly share code, notes, and snippets.

@CopyAndPasteHub
CopyAndPasteHub / Build.gradle
Created June 26, 2016 08:46
Navigation drawer with bottom bar
compile 'com.ncapdevi:frag-nav:1.0.3'
compile 'com.roughike:bottom-bar:1.3.9'
compile('com.mikepenz:materialdrawer:5.3.1@aar') {
transitive = true
}
@CopyAndPasteHub
CopyAndPasteHub / MainActivity.Java
Created June 21, 2016 12:54
Bottom bar navigation with 3 fragments -> https://goo.gl/RiwNgm
public class MainActivity extends AppCompatActivity {
private BottomBar mBottomBar;
private FragNavController fragNavController;
//indices to fragments
private final int TAB_FIRST = FragNavController.TAB1;
private final int TAB_SECOND = FragNavController.TAB2;
private final int TAB_THIRD = FragNavController.TAB3;
@CopyAndPasteHub
CopyAndPasteHub / JFB02.java
Last active May 30, 2016 02:40
Print text on screen - Copy And Paste It !
/**
*
* @author copyandpaste.website
*/
//JFB means Java for Beginners series
/**
* Class printing some text in console
*/
public class JFB02 {