├── .gitignore ├── LICENSE ├── README.md ├── codestyles_DogmaLabs.xml ├── foregroundviews-samples ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cesards │ │ └── android │ │ └── samples │ │ └── foregroundviews │ │ ├── LinearsActivity.java │ │ ├── ListActivity.java │ │ ├── MainActivity.java │ │ └── RelativesActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ ├── bg_card.9.png │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ ├── fg_card.xml │ └── fg_card_pressed.xml │ ├── layout │ ├── activity_main.xml │ ├── list_card.xml │ ├── row_linear_item.xml │ └── row_relative_item.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── foregroundviews ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cesards │ │ └── android │ │ └── foregroundviews │ │ ├── ForegroundImageView.java │ │ ├── ForegroundLinearLayout.java │ │ ├── ForegroundRelativeLayout.java │ │ └── ForegroundTextView.java │ └── res │ └── values │ └── attrs.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/README.md -------------------------------------------------------------------------------- /codestyles_DogmaLabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/codestyles_DogmaLabs.xml -------------------------------------------------------------------------------- /foregroundviews-samples/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/build.gradle -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/LinearsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/LinearsActivity.java -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/ListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/ListActivity.java -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/MainActivity.java -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/RelativesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/java/com/cesards/android/samples/foregroundviews/RelativesActivity.java -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable-xhdpi/bg_card.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable-xhdpi/bg_card.9.png -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable/fg_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable/fg_card.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/drawable/fg_card_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/drawable/fg_card_pressed.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/layout/list_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/layout/list_card.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/layout/row_linear_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/layout/row_linear_item.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/layout/row_relative_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/layout/row_relative_item.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /foregroundviews-samples/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews-samples/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /foregroundviews/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews/build.gradle -------------------------------------------------------------------------------- /foregroundviews/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundImageView.java -------------------------------------------------------------------------------- /foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundLinearLayout.java -------------------------------------------------------------------------------- /foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundRelativeLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundRelativeLayout.java -------------------------------------------------------------------------------- /foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews/src/main/java/com/cesards/android/foregroundviews/ForegroundTextView.java -------------------------------------------------------------------------------- /foregroundviews/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/foregroundviews/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesards/ForegroundViews/HEAD/settings.gradle --------------------------------------------------------------------------------