This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.graphics.Rect; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.View; | |
public class ItemDecoration extends RecyclerView.ItemDecoration { | |
/** | |
* | |
* {@link #startPadding} and {@link #endPadding} are final and required on initialization | |
* because {@link android.support.v7.widget.RecyclerView.ItemDecoration} are drawn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# ------------------------------------------------------ | |
# Android Studio formatting script. | |
# ------------------------------------------------------ | |
IDE_BIN_HOME="${0%/*}" | |
export STUDIO_PROPERTIES=$IDE_BIN_HOME/format.properties | |
filesToFormat=$(cat -) |