Skip to content

Instantly share code, notes, and snippets.

View carlosmuvi's full-sized avatar
🏠
Working from home

Carlos M. carlosmuvi

🏠
Working from home
View GitHub Profile
@carlosmuvi
carlosmuvi / ToolbarActivity.java
Created May 4, 2016 16:11 — forked from ffgiraldez/ToolbarActivity.java
Disable toolbar scroll flag when content it's not enough to fill the screen
public class ToolbarActivity extends AppCompatActivity {
// Set the flags that fit your needs
private static final int ENABLED_SCROLL_BEHAVIOR = AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL;
private static final int DISABLED_SCROLL_BEHAVIOR = 0;
private static final int SCROLL_DOWN = 1;
//Injected via ButterKnife (http://jakewharton.github.io/butterknife)
@InjectView(R.id.toolbar)
Toolbar toolbar;
@InjectView(R.id.recyclerview)
@carlosmuvi
carlosmuvi / app.js
Last active August 29, 2015 14:16 — forked from jgoux/app.js
angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers'])
.run(function(DB) {
DB.init();
});