├── .classpath ├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ ├── acra_4_2_3.xml │ └── acra_4_2_3_sources.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── assets └── changelog │ ├── changelog.css │ └── changelog.html ├── doc └── Ptp-DeviceInfo.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── acra-4.2.3-sources.jar └── acra-4.2.3.jar ├── proguard.cfg ├── project.properties ├── res ├── drawable-hdpi │ ├── arrow1.png │ ├── arrow2.png │ ├── arrow3.png │ ├── batterylevel_0.png │ ├── batterylevel_10.png │ ├── batterylevel_100.png │ ├── batterylevel_20.png │ ├── batterylevel_30.png │ ├── batterylevel_40.png │ ├── batterylevel_50.png │ ├── batterylevel_60.png │ ├── batterylevel_70.png │ ├── batterylevel_80.png │ ├── batterylevel_90.png │ ├── divider_arrow_right.png │ ├── divider_background.9.png │ ├── icon.png │ ├── icon_pro_white.png │ ├── metering_af_3d_tracking.png │ ├── metering_af_auto_area.png │ ├── metering_af_dynamic_area.png │ ├── metering_af_single_point.png │ ├── metering_exposure_center_weighted_average_canon.png │ ├── metering_exposure_center_weighted_nikon.png │ ├── metering_exposure_evaluative_canon.png │ ├── metering_exposure_matrix_nikon.png │ ├── metering_exposure_partial.png │ ├── metering_exposure_spot.png │ ├── shootingmode_adep.png │ ├── shootingmode_auto.png │ ├── shootingmode_av.png │ ├── shootingmode_bulb.png │ ├── shootingmode_ca.png │ ├── shootingmode_close_up.png │ ├── shootingmode_creativeauto.png │ ├── shootingmode_dep.png │ ├── shootingmode_flash_off.png │ ├── shootingmode_landscape.png │ ├── shootingmode_lock.png │ ├── shootingmode_m.png │ ├── shootingmode_night_scene_portrait.png │ ├── shootingmode_portrait.png │ ├── shootingmode_program.png │ ├── shootingmode_sports.png │ ├── shootingmode_tv.png │ ├── shootingmode_unknown.png │ ├── whitebalance_auto.png │ ├── whitebalance_cloudy.png │ ├── whitebalance_color_temperature.png │ ├── whitebalance_custom1.png │ ├── whitebalance_custom2.png │ ├── whitebalance_custom3.png │ ├── whitebalance_custom4.png │ ├── whitebalance_custom5.png │ ├── whitebalance_daylight.png │ ├── whitebalance_flash.png │ ├── whitebalance_fluorescent.png │ ├── whitebalance_manual1.png │ ├── whitebalance_manual2.png │ ├── whitebalance_manual3.png │ ├── whitebalance_manual4.png │ ├── whitebalance_manual5.png │ ├── whitebalance_shade.png │ ├── whitebalance_tungsten.png │ └── whitebalance_unknown.png ├── drawable-mdpi │ ├── arrow1.png │ ├── arrow2.png │ ├── arrow3.png │ ├── batterylevel_0.png │ ├── batterylevel_10.png │ ├── batterylevel_100.png │ ├── batterylevel_20.png │ ├── batterylevel_30.png │ ├── batterylevel_40.png │ ├── batterylevel_50.png │ ├── batterylevel_60.png │ ├── batterylevel_70.png │ ├── batterylevel_80.png │ ├── batterylevel_90.png │ ├── divider_arrow_right.png │ ├── divider_background.9.png │ ├── icon.png │ ├── icon_pro_white.png │ ├── metering_af_3d_tracking.png │ ├── metering_af_auto_area.png │ ├── metering_af_dynamic_area.png │ ├── metering_af_single_point.png │ ├── metering_exposure_center_weighted_average_canon.png │ ├── metering_exposure_center_weighted_nikon.png │ ├── metering_exposure_evaluative_canon.png │ ├── metering_exposure_matrix_nikon.png │ ├── metering_exposure_partial.png │ ├── metering_exposure_spot.png │ ├── shootingmode_adep.png │ ├── shootingmode_auto.png │ ├── shootingmode_av.png │ ├── shootingmode_bulb.png │ ├── shootingmode_ca.png │ ├── shootingmode_close_up.png │ ├── shootingmode_creativeauto.png │ ├── shootingmode_dep.png │ ├── shootingmode_flash_off.png │ ├── shootingmode_landscape.png │ ├── shootingmode_lock.png │ ├── shootingmode_m.png │ ├── shootingmode_night_scene_portrait.png │ ├── shootingmode_portrait.png │ ├── shootingmode_program.png │ ├── shootingmode_sports.png │ ├── shootingmode_tv.png │ ├── shootingmode_unknown.png │ ├── whitebalance_auto.png │ ├── whitebalance_cloudy.png │ ├── whitebalance_color_temperature.png │ ├── whitebalance_custom1.png │ ├── whitebalance_custom2.png │ ├── whitebalance_custom3.png │ ├── whitebalance_custom4.png │ ├── whitebalance_custom5.png │ ├── whitebalance_daylight.png │ ├── whitebalance_flash.png │ ├── whitebalance_fluorescent.png │ ├── whitebalance_manual1.png │ ├── whitebalance_manual2.png │ ├── whitebalance_manual3.png │ ├── whitebalance_manual4.png │ ├── whitebalance_manual5.png │ ├── whitebalance_shade.png │ ├── whitebalance_tungsten.png │ └── whitebalance_unknown.png ├── drawable-xhdpi │ └── icon_pro_white.png ├── drawable-xlarge-hdpi │ ├── arrow1.png │ ├── arrow2.png │ ├── arrow3.png │ ├── batterylevel_0.png │ ├── batterylevel_10.png │ ├── batterylevel_100.png │ ├── batterylevel_20.png │ ├── batterylevel_30.png │ ├── batterylevel_40.png │ ├── batterylevel_50.png │ ├── batterylevel_60.png │ ├── batterylevel_70.png │ ├── batterylevel_80.png │ ├── batterylevel_90.png │ ├── metering_af_3d_tracking.png │ ├── metering_af_auto_area.png │ ├── metering_af_dynamic_area.png │ ├── metering_af_single_point.png │ ├── metering_exposure_center_weighted_average_canon.png │ ├── metering_exposure_center_weighted_nikon.png │ ├── metering_exposure_evaluative_canon.png │ ├── metering_exposure_matrix_nikon.png │ ├── metering_exposure_partial.png │ ├── metering_exposure_spot.png │ ├── shootingmode_adep.png │ ├── shootingmode_auto.png │ ├── shootingmode_av.png │ ├── shootingmode_bulb.png │ ├── shootingmode_ca.png │ ├── shootingmode_close_up.png │ ├── shootingmode_creativeauto.png │ ├── shootingmode_dep.png │ ├── shootingmode_flash_off.png │ ├── shootingmode_landscape.png │ ├── shootingmode_lock.png │ ├── shootingmode_m.png │ ├── shootingmode_night_scene_portrait.png │ ├── shootingmode_portrait.png │ ├── shootingmode_program.png │ ├── shootingmode_sports.png │ ├── shootingmode_tv.png │ ├── shootingmode_unknown.png │ ├── whitebalance_auto.png │ ├── whitebalance_cloudy.png │ ├── whitebalance_color_temperature.png │ ├── whitebalance_custom1.png │ ├── whitebalance_custom2.png │ ├── whitebalance_custom3.png │ ├── whitebalance_custom4.png │ ├── whitebalance_custom5.png │ ├── whitebalance_daylight.png │ ├── whitebalance_flash.png │ ├── whitebalance_fluorescent.png │ ├── whitebalance_manual1.png │ ├── whitebalance_manual2.png │ ├── whitebalance_manual3.png │ ├── whitebalance_manual4.png │ ├── whitebalance_manual5.png │ ├── whitebalance_shade.png │ ├── whitebalance_tungsten.png │ └── whitebalance_unknown.png ├── drawable-xlarge-mdpi │ ├── arrow1.png │ ├── arrow2.png │ ├── arrow3.png │ ├── batterylevel_0.png │ ├── batterylevel_10.png │ ├── batterylevel_100.png │ ├── batterylevel_20.png │ ├── batterylevel_30.png │ ├── batterylevel_40.png │ ├── batterylevel_50.png │ ├── batterylevel_60.png │ ├── batterylevel_70.png │ ├── batterylevel_80.png │ ├── batterylevel_90.png │ ├── metering_af_3d_tracking.png │ ├── metering_af_auto_area.png │ ├── metering_af_dynamic_area.png │ ├── metering_af_single_point.png │ ├── metering_exposure_center_weighted_average_canon.png │ ├── metering_exposure_center_weighted_nikon.png │ ├── metering_exposure_evaluative_canon.png │ ├── metering_exposure_matrix_nikon.png │ ├── metering_exposure_partial.png │ ├── metering_exposure_spot.png │ ├── shootingmode_adep.png │ ├── shootingmode_auto.png │ ├── shootingmode_av.png │ ├── shootingmode_bulb.png │ ├── shootingmode_ca.png │ ├── shootingmode_close_up.png │ ├── shootingmode_creativeauto.png │ ├── shootingmode_dep.png │ ├── shootingmode_flash_off.png │ ├── shootingmode_landscape.png │ ├── shootingmode_lock.png │ ├── shootingmode_m.png │ ├── shootingmode_night_scene_portrait.png │ ├── shootingmode_portrait.png │ ├── shootingmode_program.png │ ├── shootingmode_sports.png │ ├── shootingmode_tv.png │ ├── shootingmode_unknown.png │ ├── whitebalance_auto.png │ ├── whitebalance_cloudy.png │ ├── whitebalance_color_temperature.png │ ├── whitebalance_custom1.png │ ├── whitebalance_custom2.png │ ├── whitebalance_custom3.png │ ├── whitebalance_custom4.png │ ├── whitebalance_custom5.png │ ├── whitebalance_daylight.png │ ├── whitebalance_flash.png │ ├── whitebalance_fluorescent.png │ ├── whitebalance_manual1.png │ ├── whitebalance_manual2.png │ ├── whitebalance_manual3.png │ ├── whitebalance_manual4.png │ ├── whitebalance_manual5.png │ ├── whitebalance_shade.png │ ├── whitebalance_tungsten.png │ └── whitebalance_unknown.png ├── drawable │ ├── batterylevel.xml │ └── window_background.xml ├── layout-large │ └── session_frag.xml ├── layout │ ├── about_dialog.xml │ ├── drive_lens_pane.xml │ ├── gallery_frag.xml │ ├── gallery_list_item.xml │ ├── liveview.xml │ ├── picture_frag.xml │ ├── properties_grid.xml │ ├── property_icon_list_item.xml │ ├── property_list_item.xml │ ├── property_listview.xml │ ├── session.xml │ ├── session_frag.xml │ ├── thumbnail_list_item.xml │ └── webview_dialog.xml ├── menu │ └── main_menu.xml ├── values-large │ ├── dimens.xml │ └── styles.xml ├── values-xlarge │ └── dimens.xml ├── values │ ├── arrays.xml │ ├── colors.xml │ ├── config.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── app_settings_preferences.xml │ └── device_filter.xml └── src └── com └── remoteyourcam └── usb ├── AbstractRycApplication.java ├── AppConfig.java ├── AppSettings.java ├── GestureDetector.java ├── MainActivity.java ├── PictureView.java ├── PropertyAdapter.java ├── PropertyData.java ├── PropertyDisplayer.java ├── PropertyToggle.java ├── RycApplication.java ├── activities └── AppSettingsActivity.java ├── ptp ├── Camera.java ├── EosCamera.java ├── EosConstants.java ├── FocusPoint.java ├── NikonCamera.java ├── PacketUtil.java ├── PtpAction.java ├── PtpCamera.java ├── PtpConstants.java ├── PtpPropertyHelper.java ├── PtpService.java ├── PtpUsbConnection.java ├── PtpUsbService.java ├── WorkerNotifier.java ├── commands │ ├── CloseSessionCommand.java │ ├── Command.java │ ├── GetDeviceInfoCommand.java │ ├── GetDevicePropDescCommand.java │ ├── GetDevicePropValueCommand.java │ ├── GetObjectCommand.java │ ├── GetObjectHandlesCommand.java │ ├── GetObjectInfoCommand.java │ ├── GetStorageIdsCommand.java │ ├── GetStorageInfoCommand.java │ ├── GetStorageInfosAction.java │ ├── GetThumb.java │ ├── InitiateCaptureCommand.java │ ├── OpenSessionCommand.java │ ├── RetrieveAddedObjectInfoAction.java │ ├── RetrieveImageAction.java │ ├── RetrieveImageInfoAction.java │ ├── RetrievePictureAction.java │ ├── SetDevicePropValueCommand.java │ ├── SimpleCommand.java │ ├── eos │ │ ├── EosCommand.java │ │ ├── EosEventCheckCommand.java │ │ ├── EosGetLiveViewPictureCommand.java │ │ ├── EosOpenSessionAction.java │ │ ├── EosSetExtendedEventInfoCommand.java │ │ ├── EosSetLiveViewAction.java │ │ ├── EosSetPcModeCommand.java │ │ ├── EosSetPropertyCommand.java │ │ └── EosTakePictureCommand.java │ └── nikon │ │ ├── NikonAfDriveCommand.java │ │ ├── NikonAfDriveDeviceReadyCommand.java │ │ ├── NikonCloseSessionAction.java │ │ ├── NikonCommand.java │ │ ├── NikonEventCheckCommand.java │ │ ├── NikonGetLiveViewImageAction.java │ │ ├── NikonGetLiveViewImageCommand.java │ │ ├── NikonGetVendorPropCodesCommand.java │ │ ├── NikonOpenSessionAction.java │ │ ├── NikonStartLiveViewAction.java │ │ └── NikonStopLiveViewAction.java └── model │ ├── DeviceInfo.java │ ├── DevicePropDesc.java │ ├── LiveViewData.java │ ├── ObjectInfo.java │ └── StorageInfo.java ├── util ├── DimenUtil.java ├── NotificationIds.java └── PackageUtil.java └── view ├── AspectRatioImageView.java ├── BaseFragment.java ├── GalleryAdapter.java ├── GalleryFragment.java ├── PictureFragment.java ├── SessionActivity.java ├── SessionFragment.java ├── SessionView.java ├── StorageAdapter.java ├── TabletSessionFragment.java ├── ThumbnailAdapter.java └── WebViewDialogFragment.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/acra_4_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/libraries/acra_4_2_3.xml -------------------------------------------------------------------------------- /.idea/libraries/acra_4_2_3_sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/libraries/acra_4_2_3_sources.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/README.md -------------------------------------------------------------------------------- /assets/changelog/changelog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/assets/changelog/changelog.css -------------------------------------------------------------------------------- /assets/changelog/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/assets/changelog/changelog.html -------------------------------------------------------------------------------- /doc/Ptp-DeviceInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/doc/Ptp-DeviceInfo.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/acra-4.2.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/libs/acra-4.2.3-sources.jar -------------------------------------------------------------------------------- /libs/acra-4.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/libs/acra-4.2.3.jar -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/proguard.cfg -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/arrow1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/arrow2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/arrow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/arrow3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_0.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_100.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_20.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_30.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_40.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_50.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_60.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_70.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_80.png -------------------------------------------------------------------------------- /res/drawable-hdpi/batterylevel_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/batterylevel_90.png -------------------------------------------------------------------------------- /res/drawable-hdpi/divider_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/divider_arrow_right.png -------------------------------------------------------------------------------- /res/drawable-hdpi/divider_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/divider_background.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_pro_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/icon_pro_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_af_3d_tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_af_3d_tracking.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_af_auto_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_af_auto_area.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_af_dynamic_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_af_dynamic_area.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_af_single_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_af_single_point.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_exposure_center_weighted_average_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_exposure_center_weighted_average_canon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_exposure_center_weighted_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_exposure_center_weighted_nikon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_exposure_evaluative_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_exposure_evaluative_canon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_exposure_matrix_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_exposure_matrix_nikon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_exposure_partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_exposure_partial.png -------------------------------------------------------------------------------- /res/drawable-hdpi/metering_exposure_spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/metering_exposure_spot.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_adep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_adep.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_auto.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_av.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_av.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_bulb.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_ca.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_close_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_creativeauto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_creativeauto.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_dep.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_flash_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_landscape.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_lock.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_m.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_night_scene_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_night_scene_portrait.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_portrait.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_program.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_sports.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_tv.png -------------------------------------------------------------------------------- /res/drawable-hdpi/shootingmode_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/shootingmode_unknown.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_auto.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_cloudy.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_color_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_color_temperature.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_custom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_custom1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_custom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_custom2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_custom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_custom3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_custom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_custom4.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_custom5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_custom5.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_daylight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_daylight.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_flash.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_fluorescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_fluorescent.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_manual1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_manual1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_manual2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_manual2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_manual3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_manual3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_manual4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_manual4.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_manual5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_manual5.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_shade.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_tungsten.png -------------------------------------------------------------------------------- /res/drawable-hdpi/whitebalance_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-hdpi/whitebalance_unknown.png -------------------------------------------------------------------------------- /res/drawable-mdpi/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/arrow1.png -------------------------------------------------------------------------------- /res/drawable-mdpi/arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/arrow2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/arrow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/arrow3.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_0.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_10.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_100.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_20.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_30.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_40.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_50.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_60.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_70.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_80.png -------------------------------------------------------------------------------- /res/drawable-mdpi/batterylevel_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/batterylevel_90.png -------------------------------------------------------------------------------- /res/drawable-mdpi/divider_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/divider_arrow_right.png -------------------------------------------------------------------------------- /res/drawable-mdpi/divider_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/divider_background.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon_pro_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/icon_pro_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_af_3d_tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_af_3d_tracking.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_af_auto_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_af_auto_area.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_af_dynamic_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_af_dynamic_area.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_af_single_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_af_single_point.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_exposure_center_weighted_average_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_exposure_center_weighted_average_canon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_exposure_center_weighted_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_exposure_center_weighted_nikon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_exposure_evaluative_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_exposure_evaluative_canon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_exposure_matrix_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_exposure_matrix_nikon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_exposure_partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_exposure_partial.png -------------------------------------------------------------------------------- /res/drawable-mdpi/metering_exposure_spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/metering_exposure_spot.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_adep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_adep.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_auto.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_av.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_av.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_bulb.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_ca.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_close_up.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_creativeauto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_creativeauto.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_dep.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_flash_off.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_landscape.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_lock.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_m.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_night_scene_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_night_scene_portrait.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_portrait.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_program.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_sports.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_tv.png -------------------------------------------------------------------------------- /res/drawable-mdpi/shootingmode_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/shootingmode_unknown.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_auto.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_cloudy.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_color_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_color_temperature.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_custom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_custom1.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_custom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_custom2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_custom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_custom3.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_custom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_custom4.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_custom5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_custom5.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_daylight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_daylight.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_flash.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_fluorescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_fluorescent.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_manual1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_manual1.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_manual2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_manual2.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_manual3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_manual3.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_manual4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_manual4.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_manual5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_manual5.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_shade.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_tungsten.png -------------------------------------------------------------------------------- /res/drawable-mdpi/whitebalance_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-mdpi/whitebalance_unknown.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_pro_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xhdpi/icon_pro_white.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/arrow1.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/arrow2.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/arrow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/arrow3.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_0.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_10.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_100.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_20.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_30.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_40.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_50.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_60.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_70.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_80.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/batterylevel_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/batterylevel_90.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_af_3d_tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_af_3d_tracking.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_af_auto_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_af_auto_area.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_af_dynamic_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_af_dynamic_area.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_af_single_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_af_single_point.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_exposure_center_weighted_average_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_exposure_center_weighted_average_canon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_exposure_center_weighted_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_exposure_center_weighted_nikon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_exposure_evaluative_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_exposure_evaluative_canon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_exposure_matrix_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_exposure_matrix_nikon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_exposure_partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_exposure_partial.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/metering_exposure_spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/metering_exposure_spot.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_adep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_adep.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_auto.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_av.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_av.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_bulb.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_ca.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_close_up.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_creativeauto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_creativeauto.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_dep.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_flash_off.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_landscape.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_lock.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_m.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_night_scene_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_night_scene_portrait.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_portrait.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_program.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_sports.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_tv.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/shootingmode_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/shootingmode_unknown.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_auto.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_cloudy.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_color_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_color_temperature.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_custom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_custom1.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_custom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_custom2.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_custom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_custom3.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_custom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_custom4.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_custom5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_custom5.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_daylight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_daylight.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_flash.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_fluorescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_fluorescent.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_manual1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_manual1.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_manual2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_manual2.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_manual3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_manual3.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_manual4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_manual4.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_manual5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_manual5.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_shade.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_tungsten.png -------------------------------------------------------------------------------- /res/drawable-xlarge-hdpi/whitebalance_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-hdpi/whitebalance_unknown.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/arrow1.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/arrow2.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/arrow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/arrow3.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_0.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_10.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_100.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_20.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_30.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_40.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_50.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_60.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_70.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_80.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/batterylevel_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/batterylevel_90.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_af_3d_tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_af_3d_tracking.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_af_auto_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_af_auto_area.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_af_dynamic_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_af_dynamic_area.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_af_single_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_af_single_point.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_exposure_center_weighted_average_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_exposure_center_weighted_average_canon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_exposure_center_weighted_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_exposure_center_weighted_nikon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_exposure_evaluative_canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_exposure_evaluative_canon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_exposure_matrix_nikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_exposure_matrix_nikon.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_exposure_partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_exposure_partial.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/metering_exposure_spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/metering_exposure_spot.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_adep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_adep.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_auto.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_av.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_av.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_bulb.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_ca.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_close_up.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_creativeauto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_creativeauto.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_dep.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_flash_off.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_landscape.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_lock.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_m.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_night_scene_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_night_scene_portrait.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_portrait.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_program.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_sports.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_tv.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/shootingmode_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/shootingmode_unknown.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_auto.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_cloudy.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_color_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_color_temperature.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_custom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_custom1.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_custom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_custom2.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_custom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_custom3.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_custom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_custom4.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_custom5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_custom5.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_daylight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_daylight.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_flash.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_fluorescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_fluorescent.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_manual1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_manual1.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_manual2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_manual2.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_manual3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_manual3.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_manual4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_manual4.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_manual5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_manual5.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_shade.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_tungsten.png -------------------------------------------------------------------------------- /res/drawable-xlarge-mdpi/whitebalance_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable-xlarge-mdpi/whitebalance_unknown.png -------------------------------------------------------------------------------- /res/drawable/batterylevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable/batterylevel.xml -------------------------------------------------------------------------------- /res/drawable/window_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/drawable/window_background.xml -------------------------------------------------------------------------------- /res/layout-large/session_frag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout-large/session_frag.xml -------------------------------------------------------------------------------- /res/layout/about_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/about_dialog.xml -------------------------------------------------------------------------------- /res/layout/drive_lens_pane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/drive_lens_pane.xml -------------------------------------------------------------------------------- /res/layout/gallery_frag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/gallery_frag.xml -------------------------------------------------------------------------------- /res/layout/gallery_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/gallery_list_item.xml -------------------------------------------------------------------------------- /res/layout/liveview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/liveview.xml -------------------------------------------------------------------------------- /res/layout/picture_frag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/picture_frag.xml -------------------------------------------------------------------------------- /res/layout/properties_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/properties_grid.xml -------------------------------------------------------------------------------- /res/layout/property_icon_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/property_icon_list_item.xml -------------------------------------------------------------------------------- /res/layout/property_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/property_list_item.xml -------------------------------------------------------------------------------- /res/layout/property_listview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/property_listview.xml -------------------------------------------------------------------------------- /res/layout/session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/session.xml -------------------------------------------------------------------------------- /res/layout/session_frag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/session_frag.xml -------------------------------------------------------------------------------- /res/layout/thumbnail_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/thumbnail_list_item.xml -------------------------------------------------------------------------------- /res/layout/webview_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/layout/webview_dialog.xml -------------------------------------------------------------------------------- /res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/menu/main_menu.xml -------------------------------------------------------------------------------- /res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values-large/dimens.xml -------------------------------------------------------------------------------- /res/values-large/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values-large/styles.xml -------------------------------------------------------------------------------- /res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/arrays.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/config.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/ids.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/xml/app_settings_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/xml/app_settings_preferences.xml -------------------------------------------------------------------------------- /res/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/res/xml/device_filter.xml -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/AbstractRycApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/AbstractRycApplication.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/AppConfig.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/AppSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/AppSettings.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/GestureDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/GestureDetector.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/MainActivity.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/PictureView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/PictureView.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/PropertyAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/PropertyAdapter.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/PropertyData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/PropertyData.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/PropertyDisplayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/PropertyDisplayer.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/PropertyToggle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/PropertyToggle.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/RycApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/RycApplication.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/activities/AppSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/activities/AppSettingsActivity.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/Camera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/Camera.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/EosCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/EosCamera.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/EosConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/EosConstants.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/FocusPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/FocusPoint.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/NikonCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/NikonCamera.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PacketUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PacketUtil.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpCamera.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpConstants.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpPropertyHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpPropertyHelper.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpService.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpUsbConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpUsbConnection.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/PtpUsbService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/PtpUsbService.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/WorkerNotifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/WorkerNotifier.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/CloseSessionCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/CloseSessionCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/Command.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetDeviceInfoCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetDeviceInfoCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetDevicePropDescCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetDevicePropDescCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetDevicePropValueCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetDevicePropValueCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetObjectCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetObjectCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetObjectHandlesCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetObjectHandlesCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetObjectInfoCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetObjectInfoCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetStorageIdsCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetStorageIdsCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetStorageInfoCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetStorageInfoCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetStorageInfosAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetStorageInfosAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/GetThumb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/GetThumb.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/InitiateCaptureCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/InitiateCaptureCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/OpenSessionCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/OpenSessionCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/RetrieveAddedObjectInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/RetrieveAddedObjectInfoAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/RetrieveImageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/RetrieveImageAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/RetrieveImageInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/RetrieveImageInfoAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/RetrievePictureAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/RetrievePictureAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/SetDevicePropValueCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/SetDevicePropValueCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/SimpleCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/SimpleCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosEventCheckCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosEventCheckCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosGetLiveViewPictureCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosGetLiveViewPictureCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosOpenSessionAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosOpenSessionAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosSetExtendedEventInfoCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosSetExtendedEventInfoCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosSetLiveViewAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosSetLiveViewAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosSetPcModeCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosSetPcModeCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosSetPropertyCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosSetPropertyCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/eos/EosTakePictureCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/eos/EosTakePictureCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonAfDriveCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonAfDriveCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonAfDriveDeviceReadyCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonAfDriveDeviceReadyCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonCloseSessionAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonCloseSessionAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonEventCheckCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonEventCheckCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonGetLiveViewImageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonGetLiveViewImageAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonGetLiveViewImageCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonGetLiveViewImageCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonGetVendorPropCodesCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonGetVendorPropCodesCommand.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonOpenSessionAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonOpenSessionAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonStartLiveViewAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonStartLiveViewAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/commands/nikon/NikonStopLiveViewAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/commands/nikon/NikonStopLiveViewAction.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/model/DeviceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/model/DeviceInfo.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/model/DevicePropDesc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/model/DevicePropDesc.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/model/LiveViewData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/model/LiveViewData.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/model/ObjectInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/model/ObjectInfo.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/ptp/model/StorageInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/ptp/model/StorageInfo.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/util/DimenUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/util/DimenUtil.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/util/NotificationIds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/util/NotificationIds.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/util/PackageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/util/PackageUtil.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/AspectRatioImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/AspectRatioImageView.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/BaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/BaseFragment.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/GalleryAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/GalleryAdapter.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/GalleryFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/GalleryFragment.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/PictureFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/PictureFragment.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/SessionActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/SessionActivity.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/SessionFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/SessionFragment.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/SessionView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/SessionView.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/StorageAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/StorageAdapter.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/TabletSessionFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/TabletSessionFragment.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/ThumbnailAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/ThumbnailAdapter.java -------------------------------------------------------------------------------- /src/com/remoteyourcam/usb/view/WebViewDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duwurensheng010/remoteyourcam-usb/HEAD/src/com/remoteyourcam/usb/view/WebViewDialogFragment.java --------------------------------------------------------------------------------