├── AndroidManifest.xml ├── README.md ├── libs ├── android-support-v4.jar └── nineoldandroids-2.4.0.jar ├── project.properties ├── res ├── anim │ ├── box_alpha.xml │ └── box_normal.xml ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── bound.png │ ├── bound2.png │ ├── focus_bound.png │ ├── white_border.png │ └── white_border1.9.png ├── layout │ ├── activity_main.xml │ └── grid_item.xml ├── menu │ └── main.xml ├── raw │ └── himi_ogg.ogg ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── example └── borderviewdemo ├── MainActivity.java ├── Utils ├── AnimUtils.java └── DensityUtil.java └── View ├── BorderView.java ├── CopyOfCopyOfFocusBorderView.java ├── FocusBorderView.java └── VerticalSmoothGridView.java /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/README.md -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/project.properties -------------------------------------------------------------------------------- /res/anim/box_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/anim/box_alpha.xml -------------------------------------------------------------------------------- /res/anim/box_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/anim/box_normal.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable/bound.png -------------------------------------------------------------------------------- /res/drawable/bound2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable/bound2.png -------------------------------------------------------------------------------- /res/drawable/focus_bound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable/focus_bound.png -------------------------------------------------------------------------------- /res/drawable/white_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable/white_border.png -------------------------------------------------------------------------------- /res/drawable/white_border1.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/drawable/white_border1.9.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/layout/grid_item.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/raw/himi_ogg.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/raw/himi_ogg.ogg -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/MainActivity.java -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/Utils/AnimUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/Utils/AnimUtils.java -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/Utils/DensityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/Utils/DensityUtil.java -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/View/BorderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/View/BorderView.java -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/View/CopyOfCopyOfFocusBorderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/View/CopyOfCopyOfFocusBorderView.java -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/View/FocusBorderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/View/FocusBorderView.java -------------------------------------------------------------------------------- /src/com/example/borderviewdemo/View/VerticalSmoothGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lf8289/BorderViewDemo/HEAD/src/com/example/borderviewdemo/View/VerticalSmoothGridView.java --------------------------------------------------------------------------------