Created
March 27, 2014 16:57
-
-
Save karlsander/9812423 to your computer and use it in GitHub Desktop.
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
// Setting Padding | |
timerlistFront.setPadding(0,0,0,0); | |
// Setting Margins | |
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams( | |
FrameLayout.LayoutParams.WRAP_CONTENT, | |
FrameLayout.LayoutParams.WRAP_CONTENT | |
); | |
params.setMargins(0,0,0,0); | |
timerlistFront.setLayoutParams(params); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment