An open API service indexing awesome lists of open source software.

https://github.com/pckosek/android_custom_views

Custom Views in Android
https://github.com/pckosek/android_custom_views

android java view

Last synced: 2 months ago
JSON representation

Custom Views in Android

Awesome Lists containing this project

README

        

# Android Custom Views

### Included are Several Android Projects that do the following:

- **01_CustomsViews** - a simple view that has been subclassed ([DEMO](https://www.youtube.com/watch?v=PxzMkgcQnEI)) ([LECTURE](https://www.youtube.com/watch?v=CHt5FvXrtCc))
- **02_CustomsViews** - a subclassed view that detects press and release ([DEMO](https://www.youtube.com/watch?v=Ch35qT43Jiw)) ([LECTURE](https://www.youtube.com/watch?v=L1YNYtv9qGA))
- **03_CustomsViews** - a subclassed view that detects press and release ([DEMO](https://www.youtube.com/watch?v=ALXd6Tc1kzY)) ([LECTURE](https://www.youtube.com/watch?v=JRNKU45Mu5c))
- **04_CustomsViews** - a subclassed view that counts presses ([DEMO](https://www.youtube.com/watch?v=JRnLsKjzIzg)) ([LECTURE](https://www.youtube.com/watch?v=m7BHzptFEUA))
- **05_CustomsViews** - a subclassed view that implements a runnable which counts press time ([DEMO](https://www.youtube.com/watch?v=9CLalvD-nv0)) ([LECTURE](https://www.youtube.com/watch?v=G-bpN_fj1bk))
- **06_CustomsViews** - a subclassed view that tracks motion and draws a circle ([DEMO](https://www.youtube.com/watch?v=xP1GFxRh41I))
- **07_CustomsViews** - a subclassed view that tracks motion and draws a circle, also clears drawn points ([DEMO](https://www.youtube.com/watch?v=QDlxibZWGsU))
- **08_CustomsViews** - a subclassed view that draws a finite number of tracked points ([DEMO](https://www.youtube.com/watch?v=O1OWMmeJ5y0))
- **09_CustomsViews** - a subclassed view that handles volley requests and draws the text of the parsed output
- **10_CustomsViews** - a subclassed view that tracks movement, then randomizes circle placement on release ([DEMO](https://www.youtube.com/watch?v=eg3VNoHSYng))
- **11_CustomsViews** - a subclassed view that allow you to draw multiple paths ([DEMO](https://www.youtube.com/watch?v=odJ9CVNRnBw))
- **12_CustomsViews** - a subclassed view that draws a bitmap (png with transparency) ([DEMO](https://www.youtube.com/watch?v=5zCcIt_kdrI))
- **13_CustomsViews** - a subclassed view that draws and animates a bitmap (png with transparency) ([DEMO](https://www.youtube.com/watch?v=tUug5g_7aoM))
- **14_Android_Sound_Views** - a folder containing three apps that incorporate custom views and sound
- **15_LogTouchApp** - a subclassed view that logs the x position of the click to logcat
- **16_TapResponder** - a subclassed view that draws a circle at the point of tap
- **17_MultipleTouchEvents** - a subclassed view that draws a new circle at the point of tap
- **18_TapTimer** - a custom countdown timer displaying a one second animation.