├── .gitignore ├── .idea ├── .name ├── ant.xml ├── checkstyle-idea.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── AndroidManifest.xml ├── README.md ├── ant.properties ├── local.properties ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_launcher.png │ ├── icon_delete.png │ ├── icon_downloading.png │ ├── icon_success.png │ └── progress_drawable.xml ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ ├── main.xml │ └── transmittable_media_list_item.xml └── values │ └── strings.xml ├── src └── com │ └── lxm │ └── wifiShareDemo │ ├── DataReceiver.java │ ├── DataSender.java │ ├── DataTransferListener.java │ ├── MediaItem.java │ ├── MediaListAdapter.java │ ├── SocketClient.java │ ├── SocketServer.java │ ├── Utils.java │ ├── WifiApManager.java │ └── WifiShareActivity.java └── wifiShareDemo.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | wifiShareDemo -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/ant.xml -------------------------------------------------------------------------------- /.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/README.md -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/ant.properties -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/local.properties -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-hdpi/icon_delete.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-hdpi/icon_downloading.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-hdpi/icon_success.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-hdpi/progress_drawable.xml -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/transmittable_media_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/layout/transmittable_media_list_item.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/DataReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/DataReceiver.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/DataSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/DataSender.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/DataTransferListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/DataTransferListener.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/MediaItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/MediaItem.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/MediaListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/MediaListAdapter.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/SocketClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/SocketClient.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/SocketServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/SocketServer.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/Utils.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/WifiApManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/WifiApManager.java -------------------------------------------------------------------------------- /src/com/lxm/wifiShareDemo/WifiShareActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/src/com/lxm/wifiShareDemo/WifiShareActivity.java -------------------------------------------------------------------------------- /wifiShareDemo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefly1126/wifisharedemo/HEAD/wifiShareDemo.iml --------------------------------------------------------------------------------