-
-
Save kamirbarron/3804d567a44a83333ec109964bbe4103 to your computer and use it in GitHub Desktop.
Android Cheat Sheet
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
# Android Cheat Sheet # | |
## styles ## | |
### Font family ### | |
```java | |
android:fontFamily="sans-serif" // roboto regular | |
android:fontFamily="sans-serif-light" // roboto light | |
android:fontFamily="sans-serif-condensed" // roboto condensed | |
android:fontFamily="sans-serif-condensed-light" // roboto condensed light | |
android:fontFamily="sans-serif-thin" // roboto thin (android 4.2) | |
android:fontFamily="sans-serif-medium" // roboto medium (android 5.0) | |
``` | |
## xml layouts ## | |
```java | |
// android | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
// library extension | |
xmlns:fab="http://schemas.android.com/apk/res-auto" | |
// designer tools | |
xmlns:tools="http://schemas.android.com/tools" | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment