├── .gitignore ├── .travis.yml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── in │ │ └── workarounds │ │ └── samples │ │ └── typoraphy │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── fonts │ │ ├── Montserrat-Bold.ttf │ │ └── Montserrat.ttf │ ├── java │ └── in │ │ └── workarounds │ │ └── samples │ │ └── typoraphy │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── readme.md ├── settings.gradle ├── typography-annotations ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── in │ └── workarounds │ └── typography │ └── annotations │ └── TypefaceView.java ├── typography-compiler ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── in │ └── workarounds │ └── typography │ └── compiler │ ├── TypographyProcessor.java │ └── ViewGenerator.java └── typography ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src ├── androidTest └── java │ └── in │ └── workarounds │ └── typography │ └── ApplicationTest.java └── main ├── AndroidManifest.xml ├── java └── in │ └── workarounds │ └── typography │ ├── AppCompatAutoCompleteTextView.java │ ├── AppCompatButton.java │ ├── AppCompatCheckBox.java │ ├── AppCompatEditText.java │ ├── AppCompatRadioButton.java │ ├── AppCompatTextView.java │ ├── AutoCompleteTextView.java │ ├── Button.java │ ├── CheckBox.java │ ├── EditText.java │ ├── FontLoader.java │ ├── RadioButton.java │ ├── TextView.java │ └── ToggleButton.java └── res └── values ├── attrs.xml └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/.travis.yml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/in/workarounds/samples/typoraphy/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/androidTest/java/in/workarounds/samples/typoraphy/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/assets/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /app/src/main/java/in/workarounds/samples/typoraphy/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/java/in/workarounds/samples/typoraphy/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/gradlew.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/readme.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/settings.gradle -------------------------------------------------------------------------------- /typography-annotations/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /typography-annotations/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography-annotations/build.gradle -------------------------------------------------------------------------------- /typography-annotations/src/main/java/in/workarounds/typography/annotations/TypefaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography-annotations/src/main/java/in/workarounds/typography/annotations/TypefaceView.java -------------------------------------------------------------------------------- /typography-compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /typography-compiler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography-compiler/build.gradle -------------------------------------------------------------------------------- /typography-compiler/src/main/java/in/workarounds/typography/compiler/TypographyProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography-compiler/src/main/java/in/workarounds/typography/compiler/TypographyProcessor.java -------------------------------------------------------------------------------- /typography-compiler/src/main/java/in/workarounds/typography/compiler/ViewGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography-compiler/src/main/java/in/workarounds/typography/compiler/ViewGenerator.java -------------------------------------------------------------------------------- /typography/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /typography/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/build.gradle -------------------------------------------------------------------------------- /typography/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/proguard-rules.pro -------------------------------------------------------------------------------- /typography/src/androidTest/java/in/workarounds/typography/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/androidTest/java/in/workarounds/typography/ApplicationTest.java -------------------------------------------------------------------------------- /typography/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AppCompatAutoCompleteTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AppCompatAutoCompleteTextView.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AppCompatButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AppCompatButton.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AppCompatCheckBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AppCompatCheckBox.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AppCompatEditText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AppCompatEditText.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AppCompatRadioButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AppCompatRadioButton.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AppCompatTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AppCompatTextView.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/AutoCompleteTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/AutoCompleteTextView.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/Button.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/Button.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/CheckBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/CheckBox.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/EditText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/EditText.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/FontLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/FontLoader.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/RadioButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/RadioButton.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/TextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/TextView.java -------------------------------------------------------------------------------- /typography/src/main/java/in/workarounds/typography/ToggleButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/java/in/workarounds/typography/ToggleButton.java -------------------------------------------------------------------------------- /typography/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /typography/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/workarounds/typography/HEAD/typography/src/main/res/values/strings.xml --------------------------------------------------------------------------------