├── Camera ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── Camera.apk │ ├── R.txt │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ ├── example │ │ │ └── camera │ │ │ │ ├── AlbumAty$1.class │ │ │ │ ├── AlbumAty$2.class │ │ │ │ ├── AlbumAty$3.class │ │ │ │ ├── AlbumAty$4.class │ │ │ │ ├── AlbumAty.class │ │ │ │ ├── AlbumItemAty$1.class │ │ │ │ ├── AlbumItemAty.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── CameraAty.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$menu.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ │ └── linj │ │ │ └── cameralibrary │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── dexedLibs │ │ ├── android-support-v4-3d36a11bbe54bdd1474cc6a8fc758588.jar │ │ └── cameralibrary-dd3151f81d0b333d604fb80982df9ab0.jar │ ├── jarlist.cache │ ├── proguard.txt │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── btn_back_to_camera_normal.png │ │ │ ├── btn_back_to_camera_pressed.png │ │ │ ├── btn_camera_all.png │ │ │ ├── btn_camera_all_click.png │ │ │ ├── btn_shutter_video.png │ │ │ ├── btn_shutter_video_click.png │ │ │ ├── btn_stop_red.png │ │ │ ├── btn_stop_red_click.png │ │ │ ├── have_new_effect_flag.png │ │ │ ├── ic_camera_top_bar_flash_auto_click.png │ │ │ ├── ic_camera_top_bar_flash_auto_normal.png │ │ │ ├── ic_camera_top_bar_flash_off_click.png │ │ │ ├── ic_camera_top_bar_flash_off_normal.png │ │ │ ├── ic_camera_top_bar_flash_on_click.png │ │ │ ├── ic_camera_top_bar_flash_on_normal.png │ │ │ ├── ic_camera_top_bar_flash_torch_click.png │ │ │ ├── ic_camera_top_bar_flash_torch_normal.png │ │ │ ├── ic_camera_top_bar_my_center_normal.png │ │ │ ├── ic_camera_top_bar_my_center_pressed.png │ │ │ ├── ic_camera_top_bar_setting_click.png │ │ │ ├── ic_camera_top_bar_setting_normal.png │ │ │ ├── ic_camera_top_bar_sw_camera_click.png │ │ │ ├── ic_camera_top_bar_sw_camera_normal.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_switch_camera.png │ │ │ ├── ic_switch_video.png │ │ │ ├── ic_switcher_menu_indicator.png │ │ │ ├── icon_back02.png │ │ │ ├── icon_back02_click.png │ │ │ ├── icon_back2.png │ │ │ ├── icon_back2_click.png │ │ │ └── video_detail_player_top_bg.9.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ ├── example │ │ └── camera │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ │ └── linj │ │ └── cameralibrary │ │ └── R.java ├── ic_launcher-web.png ├── proguard-project.txt ├── proguard │ ├── dump.txt │ ├── mapping.txt │ ├── seeds.txt │ └── usage.txt ├── project.properties ├── res │ ├── anim │ │ ├── focusview_show.xml │ │ └── tempview_show.xml │ ├── drawable-hdpi │ │ ├── btn_back_to_camera_normal.png │ │ ├── btn_back_to_camera_pressed.png │ │ ├── btn_camera_all.png │ │ ├── btn_camera_all_click.png │ │ ├── btn_shutter_video.png │ │ ├── btn_shutter_video_click.png │ │ ├── btn_stop_red.png │ │ ├── btn_stop_red_click.png │ │ ├── have_new_effect_flag.png │ │ ├── ic_camera_top_bar_flash_auto_click.png │ │ ├── ic_camera_top_bar_flash_auto_normal.png │ │ ├── ic_camera_top_bar_flash_off_click.png │ │ ├── ic_camera_top_bar_flash_off_normal.png │ │ ├── ic_camera_top_bar_flash_on_click.png │ │ ├── ic_camera_top_bar_flash_on_normal.png │ │ ├── ic_camera_top_bar_flash_torch_click.png │ │ ├── ic_camera_top_bar_flash_torch_normal.png │ │ ├── ic_camera_top_bar_my_center_normal.png │ │ ├── ic_camera_top_bar_my_center_pressed.png │ │ ├── ic_camera_top_bar_setting_click.png │ │ ├── ic_camera_top_bar_setting_normal.png │ │ ├── ic_camera_top_bar_sw_camera_click.png │ │ ├── ic_camera_top_bar_sw_camera_normal.png │ │ ├── ic_launcher.png │ │ ├── ic_switch_camera.png │ │ ├── ic_switch_video.png │ │ ├── ic_switcher_menu_indicator.png │ │ ├── icon_back02.png │ │ ├── icon_back02_click.png │ │ ├── icon_back2.png │ │ ├── icon_back2_click.png │ │ └── video_detail_player_top_bg.9.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── btn_back_02_selector.xml │ │ ├── btn_back_to_camera_selector.xml │ │ ├── btn_flash_auto.xml │ │ ├── btn_flash_off.xml │ │ ├── btn_flash_on.xml │ │ ├── btn_flash_torch.xml │ │ ├── btn_photopage_top_bar_selector.xml │ │ ├── btn_play_vedio.xml │ │ ├── btn_shutter_camera.xml │ │ ├── btn_shutter_record.xml │ │ ├── btn_shutter_recording.xml │ │ ├── color_white_yellow.xml │ │ ├── ic_camera_top_bar_my_center.xml │ │ ├── ic_camera_top_bar_setting.xml │ │ ├── ic_camera_top_bar_sw_camera.xml │ │ ├── picture_setting_album_checkbox.xml │ │ ├── thumbnail_bg.xml │ │ └── title_text_selector.xml │ ├── layout-land │ │ └── album.xml │ ├── layout-port │ │ ├── album.xml │ │ ├── album_bottom_bar.xml │ │ ├── album_header_bar.xml │ │ ├── album_item_bottom_bar.xml │ │ ├── album_item_header_bar.xml │ │ ├── albumitem.xml │ │ ├── camera.xml │ │ ├── camera_bottom_bar.xml │ │ └── camera_header_bar.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── camera │ ├── AlbumAty.java │ ├── AlbumItemAty.java │ └── CameraAty.java ├── CameraLibrary ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── cameralibrary.jar │ ├── classes │ │ └── com │ │ │ └── linj │ │ │ ├── FileOperateUtil$1.class │ │ │ ├── FileOperateUtil$2.class │ │ │ ├── FileOperateUtil.class │ │ │ ├── album │ │ │ └── view │ │ │ │ ├── AlbumGridView$AlbumViewAdapter.class │ │ │ │ ├── AlbumGridView$OnCheckedChangeListener.class │ │ │ │ ├── AlbumGridView.class │ │ │ │ ├── AlbumViewPager$OnPlayVideoListener.class │ │ │ │ ├── AlbumViewPager$ViewPagerAdapter$1.class │ │ │ │ ├── AlbumViewPager$ViewPagerAdapter.class │ │ │ │ ├── AlbumViewPager.class │ │ │ │ ├── FilterImageView.class │ │ │ │ ├── MatrixImageView$1.class │ │ │ │ ├── MatrixImageView$GestureListener.class │ │ │ │ ├── MatrixImageView$MatrixTouchListener.class │ │ │ │ ├── MatrixImageView$OnMovingListener.class │ │ │ │ ├── MatrixImageView$OnSingleTapListener.class │ │ │ │ ├── MatrixImageView.class │ │ │ │ ├── ThumbnaiImageView$ViewHolder.class │ │ │ │ └── ThumbnaiImageView.class │ │ │ ├── camera │ │ │ └── view │ │ │ │ ├── CameraContainer$1.class │ │ │ │ ├── CameraContainer$2$1.class │ │ │ │ ├── CameraContainer$2.class │ │ │ │ ├── CameraContainer$3.class │ │ │ │ ├── CameraContainer$4.class │ │ │ │ ├── CameraContainer$DataHandler.class │ │ │ │ ├── CameraContainer$TakePictureListener.class │ │ │ │ ├── CameraContainer$TouchListener$1.class │ │ │ │ ├── CameraContainer$TouchListener.class │ │ │ │ ├── CameraContainer.class │ │ │ │ ├── CameraOperation.class │ │ │ │ ├── CameraView$1.class │ │ │ │ ├── CameraView$2.class │ │ │ │ ├── CameraView$FlashMode.class │ │ │ │ ├── CameraView.class │ │ │ │ ├── FocusImageView$1.class │ │ │ │ ├── FocusImageView$2.class │ │ │ │ ├── FocusImageView$3.class │ │ │ │ ├── FocusImageView.class │ │ │ │ └── TempImageView.class │ │ │ ├── cameralibrary │ │ │ ├── BuildConfig.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ │ │ ├── imageloader │ │ │ ├── DisplayImageOptions$Builder.class │ │ │ ├── DisplayImageOptions.class │ │ │ ├── DownloadImgUtils.class │ │ │ ├── ImageLoader$1.class │ │ │ ├── ImageLoader$2.class │ │ │ ├── ImageLoader$3.class │ │ │ ├── ImageLoader$4.class │ │ │ ├── ImageLoader$ImgBeanHolder.class │ │ │ ├── ImageLoader$Type.class │ │ │ ├── ImageLoader.class │ │ │ ├── ImageSizeUtil$ImageSize.class │ │ │ ├── ImageSizeUtil.class │ │ │ └── displayer │ │ │ │ ├── BitmapDisplayer.class │ │ │ │ ├── MatrixBitmapDisplayer.class │ │ │ │ ├── RoundedBitmapDisplayer$RoundedDrawable.class │ │ │ │ └── RoundedBitmapDisplayer.class │ │ │ └── video │ │ │ └── view │ │ │ ├── VideoPlayerContainer$1.class │ │ │ ├── VideoPlayerContainer$2.class │ │ │ ├── VideoPlayerContainer.class │ │ │ ├── VideoPlayerOperation.class │ │ │ ├── VideoPlayerView$1.class │ │ │ ├── VideoPlayerView$PlayerListener.class │ │ │ └── VideoPlayerView.class │ ├── jarlist.cache │ └── res │ │ └── crunch │ │ ├── drawable-hdpi │ │ ├── albumset_preselected.png │ │ ├── albumset_selected.png │ │ ├── focus_focus_failed.9.png │ │ ├── focus_focused.9.png │ │ ├── focus_focusing.9.png │ │ ├── gg_ic_video_play.png │ │ ├── gg_ic_video_play_on.png │ │ ├── ic_error.png │ │ ├── ic_stub.png │ │ ├── icon_rec.png │ │ ├── progressbar_thumb_record_mix.png │ │ ├── thumb_guide_tips_new.png │ │ ├── video_detail_player_pause.png │ │ ├── video_detail_player_start.png │ │ ├── video_pause_bg.png │ │ └── video_player_bg.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png ├── gen │ └── com │ │ └── linj │ │ └── cameralibrary │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── anim │ │ ├── focusview_show.xml │ │ └── tempview_show.xml │ ├── drawable-hdpi │ │ ├── albumset_preselected.png │ │ ├── albumset_selected.png │ │ ├── focus_focus_failed.9.png │ │ ├── focus_focused.9.png │ │ ├── focus_focusing.9.png │ │ ├── gg_ic_video_play.png │ │ ├── gg_ic_video_play_on.png │ │ ├── ic_error.png │ │ ├── ic_stub.png │ │ ├── icon_rec.png │ │ ├── progressbar_thumb_record_mix.png │ │ ├── thumb_guide_tips_new.png │ │ ├── video_detail_player_pause.png │ │ ├── video_detail_player_start.png │ │ ├── video_pause_bg.png │ │ └── video_player_bg.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── btn_play_vedio.xml │ │ ├── btn_play_vedio_b.xml │ │ ├── picture_setting_album_checkbox.xml │ │ └── progressbar_bg.xml │ ├── layout-port │ │ ├── cameracontainer.xml │ │ ├── item_album_grid.xml │ │ ├── item_album_pager.xml │ │ └── video_bottom_bar.xml │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── linj │ ├── FileOperateUtil.java │ ├── album │ └── view │ │ ├── AlbumGridView.java │ │ ├── AlbumViewPager.java │ │ ├── FilterImageView.java │ │ ├── MatrixImageView.java │ │ └── ThumbnaiImageView.java │ ├── camera │ └── view │ │ ├── CameraContainer.java │ │ ├── CameraOperation.java │ │ ├── CameraView.java │ │ ├── FocusImageView.java │ │ └── TempImageView.java │ ├── imageloader │ ├── DisplayImageOptions.java │ ├── DownloadImgUtils.java │ ├── ImageLoader.java │ ├── ImageSizeUtil.java │ └── displayer │ │ ├── BitmapDisplayer.java │ │ ├── MatrixBitmapDisplayer.java │ │ └── RoundedBitmapDisplayer.java │ └── video │ └── view │ ├── VideoPlayerContainer.java │ ├── VideoPlayerOperation.java │ └── VideoPlayerView.java └── README.md /Camera/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Camera/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Camera 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Camera/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 22 | 27 | 28 | 29 | 30 | 31 | 32 | 36 | 37 | 38 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Camera/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 22 | 27 | 28 | 29 | 30 | 31 | 32 | 36 | 37 | 38 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Camera/bin/Camera.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/Camera.apk -------------------------------------------------------------------------------- /Camera/bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim focusview_show 0x7f040000 2 | int anim tempview_show 0x7f040001 3 | int attr animat_id 0x7f010000 4 | int attr focus_fail_id 0x7f010003 5 | int attr focus_focusing_id 0x7f010001 6 | int attr focus_success_id 0x7f010002 7 | int color album_item_bg 0x7f050005 8 | int color common_text_yellow 0x7f050004 9 | int color common_title_bg 0x7f050001 10 | int color common_title_text 0x7f050003 11 | int color main_menu_bg 0x7f050000 12 | int color primary_title_text_color 0x7f050002 13 | int color video_playter_bg 0x7f050006 14 | int dimen activity_horizontal_margin 0x7f060000 15 | int dimen activity_vertical_margin 0x7f060001 16 | int dimen album_header_bar_height 0x7f060006 17 | int dimen album_header_btn_width 0x7f060009 18 | int dimen album_rooter_bar_height 0x7f06000a 19 | int dimen album_rooter_bar_text_size 0x7f06000b 20 | int dimen bottom_bar_height 0x7f060003 21 | int dimen shutter_bottom_size 0x7f060005 22 | int dimen thumbnail_imageview_size 0x7f060002 23 | int dimen title_view_left_back_padding_left 0x7f060007 24 | int dimen title_view_left_back_padding_right 0x7f060008 25 | int dimen top_menu_bar_height 0x7f060004 26 | int dimen video_bottom_bar_height 0x7f06000d 27 | int dimen videodetails_textsize_time 0x7f06000c 28 | int drawable albumset_preselected 0x7f020000 29 | int drawable albumset_selected 0x7f020001 30 | int drawable btn_back_02_selector 0x7f020002 31 | int drawable btn_back_to_camera_normal 0x7f020003 32 | int drawable btn_back_to_camera_pressed 0x7f020004 33 | int drawable btn_back_to_camera_selector 0x7f020005 34 | int drawable btn_camera_all 0x7f020006 35 | int drawable btn_camera_all_click 0x7f020007 36 | int drawable btn_flash_auto 0x7f020008 37 | int drawable btn_flash_off 0x7f020009 38 | int drawable btn_flash_on 0x7f02000a 39 | int drawable btn_flash_torch 0x7f02000b 40 | int drawable btn_photopage_top_bar_selector 0x7f02000c 41 | int drawable btn_play_vedio 0x7f02000d 42 | int drawable btn_play_vedio_b 0x7f02000e 43 | int drawable btn_shutter_camera 0x7f02000f 44 | int drawable btn_shutter_record 0x7f020010 45 | int drawable btn_shutter_recording 0x7f020011 46 | int drawable btn_shutter_video 0x7f020012 47 | int drawable btn_shutter_video_click 0x7f020013 48 | int drawable btn_stop_red 0x7f020014 49 | int drawable btn_stop_red_click 0x7f020015 50 | int drawable color_white_yellow 0x7f020016 51 | int drawable focus_focus_failed 0x7f020017 52 | int drawable focus_focused 0x7f020018 53 | int drawable focus_focusing 0x7f020019 54 | int drawable gg_ic_video_play 0x7f02001a 55 | int drawable gg_ic_video_play_on 0x7f02001b 56 | int drawable have_new_effect_flag 0x7f02001c 57 | int drawable ic_camera_top_bar_flash_auto_click 0x7f02001d 58 | int drawable ic_camera_top_bar_flash_auto_normal 0x7f02001e 59 | int drawable ic_camera_top_bar_flash_off_click 0x7f02001f 60 | int drawable ic_camera_top_bar_flash_off_normal 0x7f020020 61 | int drawable ic_camera_top_bar_flash_on_click 0x7f020021 62 | int drawable ic_camera_top_bar_flash_on_normal 0x7f020022 63 | int drawable ic_camera_top_bar_flash_torch_click 0x7f020023 64 | int drawable ic_camera_top_bar_flash_torch_normal 0x7f020024 65 | int drawable ic_camera_top_bar_my_center 0x7f020025 66 | int drawable ic_camera_top_bar_my_center_normal 0x7f020026 67 | int drawable ic_camera_top_bar_my_center_pressed 0x7f020027 68 | int drawable ic_camera_top_bar_setting 0x7f020028 69 | int drawable ic_camera_top_bar_setting_click 0x7f020029 70 | int drawable ic_camera_top_bar_setting_normal 0x7f02002a 71 | int drawable ic_camera_top_bar_sw_camera 0x7f02002b 72 | int drawable ic_camera_top_bar_sw_camera_click 0x7f02002c 73 | int drawable ic_camera_top_bar_sw_camera_normal 0x7f02002d 74 | int drawable ic_error 0x7f02002e 75 | int drawable ic_launcher 0x7f02002f 76 | int drawable ic_stub 0x7f020030 77 | int drawable ic_switch_camera 0x7f020031 78 | int drawable ic_switch_video 0x7f020032 79 | int drawable ic_switcher_menu_indicator 0x7f020033 80 | int drawable icon_back02 0x7f020034 81 | int drawable icon_back02_click 0x7f020035 82 | int drawable icon_back2 0x7f020036 83 | int drawable icon_back2_click 0x7f020037 84 | int drawable icon_rec 0x7f020038 85 | int drawable picture_setting_album_checkbox 0x7f020039 86 | int drawable progressbar_bg 0x7f02003a 87 | int drawable progressbar_thumb_record_mix 0x7f02003b 88 | int drawable thumb_guide_tips_new 0x7f02003c 89 | int drawable thumbnail_bg 0x7f02003d 90 | int drawable title_text_selector 0x7f02003e 91 | int drawable video_detail_player_pause 0x7f02003f 92 | int drawable video_detail_player_start 0x7f020040 93 | int drawable video_detail_player_top_bg 0x7f020041 94 | int drawable video_pause_bg 0x7f020042 95 | int drawable video_player_bg 0x7f020043 96 | int id FrameLayout1 0x7f0a0000 97 | int id action_settings 0x7f0a0032 98 | int id album_bottom_bar 0x7f0a0002 99 | int id album_item_bottom_bar 0x7f0a0015 100 | int id album_item_header_bar 0x7f0a0014 101 | int id albumview 0x7f0a0001 102 | int id albumviewpager 0x7f0a0013 103 | int id btnVideoPlayOrPause 0x7f0a002e 104 | int id btn_flash_mode 0x7f0a0020 105 | int id btn_other_setting 0x7f0a0021 106 | int id btn_shutter_camera 0x7f0a001d 107 | int id btn_shutter_record 0x7f0a001c 108 | int id btn_switch_camera 0x7f0a001f 109 | int id btn_switch_mode 0x7f0a001e 110 | int id btn_thumbnail 0x7f0a001a 111 | int id cameraView 0x7f0a0022 112 | int id camera_bottom_bar 0x7f0a0018 113 | int id camera_header_bar 0x7f0a0019 114 | int id checkbox 0x7f0a0029 115 | int id container 0x7f0a0017 116 | int id delete 0x7f0a0004 117 | int id edit 0x7f0a000d 118 | int id focusImageView 0x7f0a0024 119 | int id header_bar_album_title 0x7f0a0007 120 | int id header_bar_back 0x7f0a0006 121 | int id header_bar_enter_selection 0x7f0a0008 122 | int id header_bar_leave_selection 0x7f0a000a 123 | int id header_bar_navi 0x7f0a0005 124 | int id header_bar_photo_back 0x7f0a000f 125 | int id header_bar_photo_browse 0x7f0a000e 126 | int id header_bar_photo_count 0x7f0a0010 127 | int id header_bar_photo_to_camera 0x7f0a0011 128 | int id header_bar_select 0x7f0a0009 129 | int id header_bar_select_counter 0x7f0a000b 130 | int id image 0x7f0a002a 131 | int id imgThumbnail 0x7f0a0028 132 | int id llVideoDetailPlayerBottom 0x7f0a002d 133 | int id loading 0x7f0a002b 134 | int id move 0x7f0a0003 135 | int id pagerview 0x7f0a0012 136 | int id recordInfo 0x7f0a0025 137 | int id sbVideoDetailPlayer 0x7f0a0031 138 | int id select_all 0x7f0a000c 139 | int id tempImageView 0x7f0a0023 140 | int id tvVideoPlayRemainTime 0x7f0a0030 141 | int id tvVideoPlayTime 0x7f0a002f 142 | int id videoPlayerView 0x7f0a002c 143 | int id videoicon 0x7f0a001b 144 | int id videoview 0x7f0a0016 145 | int id waterMark 0x7f0a0026 146 | int id zoomSeekBar 0x7f0a0027 147 | int layout activity_main 0x7f030000 148 | int layout album 0x7f030001 149 | int layout album_bottom_bar 0x7f030002 150 | int layout album_header_bar 0x7f030003 151 | int layout album_item_bottom_bar 0x7f030004 152 | int layout album_item_header_bar 0x7f030005 153 | int layout albumitem 0x7f030006 154 | int layout camera 0x7f030007 155 | int layout camera_bottom_bar 0x7f030008 156 | int layout camera_header_bar 0x7f030009 157 | int layout cameracontainer 0x7f03000a 158 | int layout item_album_grid 0x7f03000b 159 | int layout item_album_pager 0x7f03000c 160 | int layout video_bottom_bar 0x7f03000d 161 | int menu main 0x7f090000 162 | int string Files 0x7f070003 163 | int string Image 0x7f070004 164 | int string Thumbnail 0x7f070005 165 | int string Video 0x7f070006 166 | int string action_settings 0x7f070001 167 | int string album_enter_select 0x7f070007 168 | int string album_message 0x7f070011 169 | int string album_phoot_select_all 0x7f07000a 170 | int string album_phoot_unselect_all 0x7f07000b 171 | int string album_photo_select_tip 0x7f070009 172 | int string album_title 0x7f07000c 173 | int string api_cancel 0x7f070008 174 | int string app_name 0x7f070000 175 | int string common_cut 0x7f07000e 176 | int string common_delete 0x7f07000f 177 | int string common_edit 0x7f070010 178 | int string hello_world 0x7f070002 179 | int string pgcommon_share 0x7f07000d 180 | int style AppBaseTheme 0x7f080000 181 | int style AppTheme 0x7f080001 182 | int style CheckBoxStyle 0x7f080002 183 | int style video_detail_player 0x7f080004 184 | int style video_detail_player_bottom_btn 0x7f080003 185 | int[] styleable FocusImageView { 0x7f010001, 0x7f010002, 0x7f010003 } 186 | int styleable FocusImageView_focus_fail_id 2 187 | int styleable FocusImageView_focus_focusing_id 0 188 | int styleable FocusImageView_focus_success_id 1 189 | int[] styleable TempImageView { 0x7f010000 } 190 | int styleable TempImageView_animat_id 0 191 | -------------------------------------------------------------------------------- /Camera/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes.dex -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumAty$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumAty$1.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumAty$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumAty$2.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumAty$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumAty$3.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumAty$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumAty$4.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumAty.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumAty.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumItemAty$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumItemAty$1.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/AlbumItemAty.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/AlbumItemAty.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/BuildConfig.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/CameraAty.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/CameraAty.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$anim.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$attr.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$color.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$dimen.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$drawable.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$id.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$layout.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$menu.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$string.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$style.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R$styleable.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/example/camera/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/example/camera/R.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$anim.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$attr.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$color.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$dimen.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$drawable.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$id.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$layout.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$menu.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$string.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$style.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R$styleable.class -------------------------------------------------------------------------------- /Camera/bin/classes/com/linj/cameralibrary/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/classes/com/linj/cameralibrary/R.class -------------------------------------------------------------------------------- /Camera/bin/dexedLibs/android-support-v4-3d36a11bbe54bdd1474cc6a8fc758588.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/dexedLibs/android-support-v4-3d36a11bbe54bdd1474cc6a8fc758588.jar -------------------------------------------------------------------------------- /Camera/bin/dexedLibs/cameralibrary-dd3151f81d0b333d604fb80982df9ab0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/dexedLibs/cameralibrary-dd3151f81d0b333d604fb80982df9ab0.jar -------------------------------------------------------------------------------- /Camera/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /Camera/bin/proguard.txt: -------------------------------------------------------------------------------- 1 | # view AndroidManifest.xml #generated:32 2 | -keep class com.example.camera.AlbumAty { (...); } 3 | 4 | # view AndroidManifest.xml #generated:38 5 | -keep class com.example.camera.AlbumItemAty { (...); } 6 | 7 | # view AndroidManifest.xml #generated:22 8 | -keep class com.example.camera.CameraAty { (...); } 9 | 10 | # view land\res/layout-land/album.xml #generated:17 11 | # view port\res/layout-port/album.xml #generated:30 12 | -keep class com.linj.album.view.AlbumGridView { (...); } 13 | 14 | # view port\res/layout-port/albumitem.xml #generated:13 15 | -keep class com.linj.album.view.AlbumViewPager { (...); } 16 | 17 | # view port\res/layout-port/camera_bottom_bar.xml #generated:19 18 | # view port\res/layout-port/item_album_grid.xml #generated:7 19 | -keep class com.linj.album.view.FilterImageView { (...); } 20 | 21 | # view port\res/layout-port/item_album_pager.xml #generated:6 22 | -keep class com.linj.album.view.MatrixImageView { (...); } 23 | 24 | # view port\res/layout-port/camera.xml #generated:10 25 | -keep class com.linj.camera.view.CameraContainer { (...); } 26 | 27 | # view port\res/layout-port/cameracontainer.xml #generated:7 28 | -keep class com.linj.camera.view.CameraView { (...); } 29 | 30 | # view port\res/layout-port/cameracontainer.xml #generated:17 31 | -keep class com.linj.camera.view.FocusImageView { (...); } 32 | 33 | # view port\res/layout-port/cameracontainer.xml #generated:12 34 | -keep class com.linj.camera.view.TempImageView { (...); } 35 | 36 | # view port\res/layout-port/albumitem.xml #generated:34 37 | -keep class com.linj.video.view.VideoPlayerContainer { (...); } 38 | 39 | # view port\res/layout-port/video_bottom_bar.xml #generated:7 40 | -keep class com.linj.video.view.VideoPlayerView { (...); } 41 | 42 | -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_back_to_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_back_to_camera_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_back_to_camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_back_to_camera_pressed.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_camera_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_camera_all.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_camera_all_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_camera_all_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_shutter_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_shutter_video.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_shutter_video_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_shutter_video_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_stop_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_stop_red.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/btn_stop_red_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/btn_stop_red_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/have_new_effect_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/have_new_effect_flag.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_auto_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_auto_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_auto_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_auto_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_off_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_off_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_off_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_off_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_on_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_on_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_on_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_on_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_torch_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_torch_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_torch_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_flash_torch_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_my_center_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_my_center_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_my_center_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_my_center_pressed.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_setting_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_setting_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_setting_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_setting_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_sw_camera_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_sw_camera_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_sw_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_camera_top_bar_sw_camera_normal.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_switch_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_switch_video.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/ic_switcher_menu_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/ic_switcher_menu_indicator.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/icon_back02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/icon_back02.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/icon_back02_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/icon_back02_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/icon_back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/icon_back2.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/icon_back2_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/icon_back2_click.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-hdpi/video_detail_player_top_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-hdpi/video_detail_player_top_bg.9.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/bin/resources.ap_ -------------------------------------------------------------------------------- /Camera/gen/com/example/camera/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.camera; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Camera/gen/com/linj/cameralibrary/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package com.linj.cameralibrary; 8 | 9 | public final class R { 10 | public static final class anim { 11 | public static final int focusview_show = 0x7f040000; 12 | public static final int tempview_show = 0x7f040001; 13 | } 14 | public static final class attr { 15 | public static final int animat_id = 0x7f010000; 16 | public static final int focus_fail_id = 0x7f010003; 17 | public static final int focus_focusing_id = 0x7f010001; 18 | public static final int focus_success_id = 0x7f010002; 19 | } 20 | public static final class color { 21 | public static final int album_item_bg = 0x7f050005; 22 | public static final int common_text_yellow = 0x7f050004; 23 | public static final int common_title_bg = 0x7f050001; 24 | public static final int common_title_text = 0x7f050003; 25 | public static final int main_menu_bg = 0x7f050000; 26 | public static final int primary_title_text_color = 0x7f050002; 27 | public static final int video_playter_bg = 0x7f050006; 28 | } 29 | public static final class dimen { 30 | public static final int activity_horizontal_margin = 0x7f060000; 31 | public static final int activity_vertical_margin = 0x7f060001; 32 | public static final int album_header_bar_height = 0x7f060006; 33 | public static final int album_header_btn_width = 0x7f060009; 34 | public static final int album_rooter_bar_height = 0x7f06000a; 35 | public static final int album_rooter_bar_text_size = 0x7f06000b; 36 | public static final int bottom_bar_height = 0x7f060003; 37 | public static final int shutter_bottom_size = 0x7f060005; 38 | public static final int thumbnail_imageview_size = 0x7f060002; 39 | public static final int title_view_left_back_padding_left = 0x7f060007; 40 | public static final int title_view_left_back_padding_right = 0x7f060008; 41 | public static final int top_menu_bar_height = 0x7f060004; 42 | public static final int video_bottom_bar_height = 0x7f06000d; 43 | public static final int videodetails_textsize_time = 0x7f06000c; 44 | } 45 | public static final class drawable { 46 | public static final int albumset_preselected = 0x7f020000; 47 | public static final int albumset_selected = 0x7f020001; 48 | public static final int btn_play_vedio = 0x7f02000d; 49 | public static final int btn_play_vedio_b = 0x7f02000e; 50 | public static final int focus_focus_failed = 0x7f020017; 51 | public static final int focus_focused = 0x7f020018; 52 | public static final int focus_focusing = 0x7f020019; 53 | public static final int gg_ic_video_play = 0x7f02001a; 54 | public static final int gg_ic_video_play_on = 0x7f02001b; 55 | public static final int ic_error = 0x7f02002e; 56 | public static final int ic_launcher = 0x7f02002f; 57 | public static final int ic_stub = 0x7f020030; 58 | public static final int icon_rec = 0x7f020038; 59 | public static final int picture_setting_album_checkbox = 0x7f020039; 60 | public static final int progressbar_bg = 0x7f02003a; 61 | public static final int progressbar_thumb_record_mix = 0x7f02003b; 62 | public static final int thumb_guide_tips_new = 0x7f02003c; 63 | public static final int video_detail_player_pause = 0x7f02003f; 64 | public static final int video_detail_player_start = 0x7f020040; 65 | public static final int video_pause_bg = 0x7f020042; 66 | public static final int video_player_bg = 0x7f020043; 67 | } 68 | public static final class id { 69 | public static final int action_settings = 0x7f0a0032; 70 | public static final int btnVideoPlayOrPause = 0x7f0a002e; 71 | public static final int cameraView = 0x7f0a0022; 72 | public static final int checkbox = 0x7f0a0029; 73 | public static final int focusImageView = 0x7f0a0024; 74 | public static final int image = 0x7f0a002a; 75 | public static final int imgThumbnail = 0x7f0a0028; 76 | public static final int llVideoDetailPlayerBottom = 0x7f0a002d; 77 | public static final int loading = 0x7f0a002b; 78 | public static final int recordInfo = 0x7f0a0025; 79 | public static final int sbVideoDetailPlayer = 0x7f0a0031; 80 | public static final int tempImageView = 0x7f0a0023; 81 | public static final int tvVideoPlayRemainTime = 0x7f0a0030; 82 | public static final int tvVideoPlayTime = 0x7f0a002f; 83 | public static final int videoPlayerView = 0x7f0a002c; 84 | public static final int videoicon = 0x7f0a001b; 85 | public static final int waterMark = 0x7f0a0026; 86 | public static final int zoomSeekBar = 0x7f0a0027; 87 | } 88 | public static final class layout { 89 | public static final int activity_main = 0x7f030000; 90 | public static final int cameracontainer = 0x7f03000a; 91 | public static final int item_album_grid = 0x7f03000b; 92 | public static final int item_album_pager = 0x7f03000c; 93 | public static final int video_bottom_bar = 0x7f03000d; 94 | } 95 | public static final class menu { 96 | public static final int main = 0x7f090000; 97 | } 98 | public static final class string { 99 | public static final int Files = 0x7f070003; 100 | public static final int Image = 0x7f070004; 101 | public static final int Thumbnail = 0x7f070005; 102 | public static final int Video = 0x7f070006; 103 | public static final int action_settings = 0x7f070001; 104 | public static final int album_enter_select = 0x7f070007; 105 | public static final int album_message = 0x7f070011; 106 | public static final int album_phoot_select_all = 0x7f07000a; 107 | public static final int album_phoot_unselect_all = 0x7f07000b; 108 | public static final int album_photo_select_tip = 0x7f070009; 109 | public static final int album_title = 0x7f07000c; 110 | public static final int api_cancel = 0x7f070008; 111 | public static final int app_name = 0x7f070000; 112 | public static final int common_cut = 0x7f07000e; 113 | public static final int common_delete = 0x7f07000f; 114 | public static final int common_edit = 0x7f070010; 115 | public static final int hello_world = 0x7f070002; 116 | public static final int pgcommon_share = 0x7f07000d; 117 | } 118 | public static final class style { 119 | public static final int AppBaseTheme = 0x7f080000; 120 | public static final int AppTheme = 0x7f080001; 121 | public static final int CheckBoxStyle = 0x7f080002; 122 | public static final int video_detail_player = 0x7f080004; 123 | public static final int video_detail_player_bottom_btn = 0x7f080003; 124 | } 125 | public static final class styleable { 126 | public static final int[] FocusImageView = { 0x7f010001, 0x7f010002, 0x7f010003 }; 127 | public static final int FocusImageView_focus_fail_id = 2; 128 | public static final int FocusImageView_focus_focusing_id = 0; 129 | public static final int FocusImageView_focus_success_id = 1; 130 | public static final int[] TempImageView = { 0x7f010000 }; 131 | public static final int TempImageView_animat_id = 0; 132 | } 133 | } 134 | -------------------------------------------------------------------------------- /Camera/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/ic_launcher-web.png -------------------------------------------------------------------------------- /Camera/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Camera/proguard/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/proguard/dump.txt -------------------------------------------------------------------------------- /Camera/proguard/seeds.txt: -------------------------------------------------------------------------------- 1 | android.support.v4.app.BackStackState 2 | android.support.v4.app.BackStackState: android.os.Parcelable$Creator CREATOR 3 | android.support.v4.app.Fragment$SavedState 4 | android.support.v4.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR 5 | android.support.v4.app.FragmentManagerState 6 | android.support.v4.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR 7 | android.support.v4.app.FragmentState 8 | android.support.v4.app.FragmentState: android.os.Parcelable$Creator CREATOR 9 | android.support.v4.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) 10 | android.support.v4.app.FragmentTabHost$SavedState 11 | android.support.v4.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR 12 | android.support.v4.content.ModernAsyncTask$Status: android.support.v4.content.ModernAsyncTask$Status[] values() 13 | android.support.v4.content.ModernAsyncTask$Status: android.support.v4.content.ModernAsyncTask$Status valueOf(java.lang.String) 14 | android.support.v4.view.PagerTabStrip: void setTabIndicatorColor(int) 15 | android.support.v4.view.PagerTabStrip: void setTabIndicatorColorResource(int) 16 | android.support.v4.view.PagerTabStrip: int getTabIndicatorColor() 17 | android.support.v4.view.PagerTabStrip: void setTextSpacing(int) 18 | android.support.v4.view.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) 19 | android.support.v4.view.PagerTabStrip: void setBackgroundColor(int) 20 | android.support.v4.view.PagerTabStrip: void setBackgroundResource(int) 21 | android.support.v4.view.PagerTabStrip: void setDrawFullUnderline(boolean) 22 | android.support.v4.view.PagerTabStrip: boolean getDrawFullUnderline() 23 | android.support.v4.view.PagerTabStrip: int getMinHeight() 24 | android.support.v4.view.PagerTitleStrip: void setSingleLineAllCaps(android.widget.TextView) 25 | android.support.v4.view.PagerTitleStrip: void setTextSpacing(int) 26 | android.support.v4.view.PagerTitleStrip: int getTextSpacing() 27 | android.support.v4.view.PagerTitleStrip: void setNonPrimaryAlpha(float) 28 | android.support.v4.view.PagerTitleStrip: void setTextColor(int) 29 | android.support.v4.view.PagerTitleStrip: void setGravity(int) 30 | android.support.v4.view.PagerTitleStrip: int getMinHeight() 31 | android.support.v4.view.ViewPager: ViewPager(android.content.Context) 32 | android.support.v4.view.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) 33 | android.support.v4.view.ViewPager: void setScrollState(int) 34 | android.support.v4.view.ViewPager: void setAdapter(android.support.v4.view.PagerAdapter) 35 | android.support.v4.view.ViewPager: android.support.v4.view.PagerAdapter getAdapter() 36 | android.support.v4.view.ViewPager: void setOnAdapterChangeListener(android.support.v4.view.ViewPager$OnAdapterChangeListener) 37 | android.support.v4.view.ViewPager: int getClientWidth() 38 | android.support.v4.view.ViewPager: void setCurrentItem(int) 39 | android.support.v4.view.ViewPager: int getCurrentItem() 40 | android.support.v4.view.ViewPager: void setOnPageChangeListener(android.support.v4.view.ViewPager$OnPageChangeListener) 41 | android.support.v4.view.ViewPager: void setChildrenDrawingOrderEnabledCompat(boolean) 42 | android.support.v4.view.ViewPager: int getOffscreenPageLimit() 43 | android.support.v4.view.ViewPager: void setOffscreenPageLimit(int) 44 | android.support.v4.view.ViewPager: void setPageMargin(int) 45 | android.support.v4.view.ViewPager: int getPageMargin() 46 | android.support.v4.view.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) 47 | android.support.v4.view.ViewPager: void setPageMarginDrawable(int) 48 | android.support.v4.view.ViewPager: void setScrollingCacheEnabled(boolean) 49 | android.support.v4.view.ViewPager$SavedState 50 | android.support.v4.view.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR 51 | android.support.v4.widget.DrawerLayout: void setScrimColor(int) 52 | android.support.v4.widget.DrawerLayout: void setDrawerListener(android.support.v4.widget.DrawerLayout$DrawerListener) 53 | android.support.v4.widget.DrawerLayout: void setDrawerLockMode(int) 54 | android.support.v4.widget.DrawerLayout$SavedState 55 | android.support.v4.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR 56 | android.support.v4.widget.SlidingPaneLayout: void setParallaxDistance(int) 57 | android.support.v4.widget.SlidingPaneLayout: int getParallaxDistance() 58 | android.support.v4.widget.SlidingPaneLayout: void setSliderFadeColor(int) 59 | android.support.v4.widget.SlidingPaneLayout: int getSliderFadeColor() 60 | android.support.v4.widget.SlidingPaneLayout: void setCoveredFadeColor(int) 61 | android.support.v4.widget.SlidingPaneLayout: int getCoveredFadeColor() 62 | android.support.v4.widget.SlidingPaneLayout: void setPanelSlideListener(android.support.v4.widget.SlidingPaneLayout$PanelSlideListener) 63 | android.support.v4.widget.SlidingPaneLayout: void setShadowDrawable(android.graphics.drawable.Drawable) 64 | android.support.v4.widget.SlidingPaneLayout: void setShadowResource(int) 65 | android.support.v4.widget.SlidingPaneLayout$SavedState 66 | android.support.v4.widget.SlidingPaneLayout$SavedState: android.os.Parcelable$Creator CREATOR 67 | com.example.camera.AlbumAty 68 | com.example.camera.AlbumAty: AlbumAty() 69 | com.example.camera.AlbumAty: void onClick(android.view.View) 70 | com.example.camera.AlbumDetailAty 71 | com.example.camera.AlbumDetailAty: AlbumDetailAty() 72 | com.example.camera.CameraAty 73 | com.example.camera.CameraAty: CameraAty() 74 | com.example.camera.CameraAty: void onClick(android.view.View) 75 | com.example.camera.R$anim: int focusview_show 76 | com.example.camera.R$anim: int tempview_show 77 | com.example.camera.R$attr: int animat_id 78 | com.example.camera.R$color: int common_text_yellow 79 | com.example.camera.R$color: int common_title_bg 80 | com.example.camera.R$color: int common_title_text 81 | com.example.camera.R$color: int main_menu_bg 82 | com.example.camera.R$color: int primary_title_text_color 83 | com.example.camera.R$dimen: int activity_horizontal_margin 84 | com.example.camera.R$dimen: int activity_vertical_margin 85 | com.example.camera.R$dimen: int album_header_bar_height 86 | com.example.camera.R$dimen: int album_header_btn_width 87 | com.example.camera.R$dimen: int album_rooter_bar_height 88 | com.example.camera.R$dimen: int album_rooter_bar_text_size 89 | com.example.camera.R$dimen: int bottom_bar_height 90 | com.example.camera.R$dimen: int shutter_bottom_size 91 | com.example.camera.R$dimen: int thumbnail_imageview_size 92 | com.example.camera.R$dimen: int title_view_left_back_padding_left 93 | com.example.camera.R$dimen: int title_view_left_back_padding_right 94 | com.example.camera.R$dimen: int top_menu_bar_height 95 | com.example.camera.R$drawable: int albumset_preselected 96 | com.example.camera.R$drawable: int albumset_selected 97 | com.example.camera.R$drawable: int btn_back_02_selector 98 | com.example.camera.R$drawable: int btn_back_to_camera_normal 99 | com.example.camera.R$drawable: int btn_back_to_camera_pressed 100 | com.example.camera.R$drawable: int btn_back_to_camera_selector 101 | com.example.camera.R$drawable: int btn_camera_all 102 | com.example.camera.R$drawable: int btn_camera_all_click 103 | com.example.camera.R$drawable: int btn_flash_auto 104 | com.example.camera.R$drawable: int btn_flash_off 105 | com.example.camera.R$drawable: int btn_flash_on 106 | com.example.camera.R$drawable: int btn_flash_torch 107 | com.example.camera.R$drawable: int btn_photopage_top_bar_selector 108 | com.example.camera.R$drawable: int btn_shutter 109 | com.example.camera.R$drawable: int color_white_yellow 110 | com.example.camera.R$drawable: int focus 111 | com.example.camera.R$drawable: int focus_succeed 112 | com.example.camera.R$drawable: int have_new_effect_flag 113 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_auto_click 114 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_auto_normal 115 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_off_click 116 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_off_normal 117 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_on_click 118 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_on_normal 119 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_torch_click 120 | com.example.camera.R$drawable: int ic_camera_top_bar_flash_torch_normal 121 | com.example.camera.R$drawable: int ic_camera_top_bar_my_center 122 | com.example.camera.R$drawable: int ic_camera_top_bar_my_center_normal 123 | com.example.camera.R$drawable: int ic_camera_top_bar_my_center_pressed 124 | com.example.camera.R$drawable: int ic_camera_top_bar_setting 125 | com.example.camera.R$drawable: int ic_camera_top_bar_setting_click 126 | com.example.camera.R$drawable: int ic_camera_top_bar_setting_normal 127 | com.example.camera.R$drawable: int ic_camera_top_bar_sw_camera 128 | com.example.camera.R$drawable: int ic_camera_top_bar_sw_camera_click 129 | com.example.camera.R$drawable: int ic_camera_top_bar_sw_camera_normal 130 | com.example.camera.R$drawable: int ic_error 131 | com.example.camera.R$drawable: int ic_launcher 132 | com.example.camera.R$drawable: int ic_stub 133 | com.example.camera.R$drawable: int icon_back02 134 | com.example.camera.R$drawable: int icon_back02_click 135 | com.example.camera.R$drawable: int icon_back2 136 | com.example.camera.R$drawable: int icon_back2_click 137 | com.example.camera.R$drawable: int icon_modebtn 138 | com.example.camera.R$drawable: int picture_setting_album_checkbox 139 | com.example.camera.R$drawable: int thumbnail_bg 140 | com.example.camera.R$drawable: int title_text_selector 141 | com.example.camera.R$id: int FrameLayout1 142 | com.example.camera.R$id: int action_settings 143 | com.example.camera.R$id: int album_bottom_bar 144 | com.example.camera.R$id: int album_title 145 | com.example.camera.R$id: int albumview 146 | com.example.camera.R$id: int btn_cloud_home 147 | com.example.camera.R$id: int btn_flash_mode 148 | com.example.camera.R$id: int btn_other 149 | com.example.camera.R$id: int btn_other_setting 150 | com.example.camera.R$id: int btn_shutter 151 | com.example.camera.R$id: int btn_switch_camera 152 | com.example.camera.R$id: int btn_thumbnail 153 | com.example.camera.R$id: int checkbox 154 | com.example.camera.R$id: int container 155 | com.example.camera.R$id: int delete 156 | com.example.camera.R$id: int download 157 | com.example.camera.R$id: int header_bar_album_title 158 | com.example.camera.R$id: int header_bar_back 159 | com.example.camera.R$id: int header_bar_enter_selection 160 | com.example.camera.R$id: int header_bar_leave_selection 161 | com.example.camera.R$id: int header_bar_navi 162 | com.example.camera.R$id: int header_bar_photo_back 163 | com.example.camera.R$id: int header_bar_photo_browse 164 | com.example.camera.R$id: int header_bar_photo_count 165 | com.example.camera.R$id: int header_bar_photo_to_camera 166 | com.example.camera.R$id: int header_bar_select 167 | com.example.camera.R$id: int header_bar_select_counter 168 | com.example.camera.R$id: int image 169 | com.example.camera.R$id: int imgThumbnail 170 | com.example.camera.R$id: int img_mode_function_new_red_point 171 | com.example.camera.R$id: int loading 172 | com.example.camera.R$id: int pagerPhoto 173 | com.example.camera.R$id: int select_all 174 | com.example.camera.R$id: int share 175 | com.example.camera.R$id: int testl 176 | com.example.camera.R$layout: int album 177 | com.example.camera.R$layout: int album_bottom_bar 178 | com.example.camera.R$layout: int album_header_bar 179 | com.example.camera.R$layout: int albumdetail 180 | com.example.camera.R$layout: int camera 181 | com.example.camera.R$layout: int camera_bottom_bar 182 | com.example.camera.R$layout: int camera_top_bar 183 | com.example.camera.R$layout: int item_album_grid 184 | com.example.camera.R$layout: int item_album_pager 185 | com.example.camera.R$menu: int main 186 | com.example.camera.R$string: int Files 187 | com.example.camera.R$string: int Image 188 | com.example.camera.R$string: int Thumbnail 189 | com.example.camera.R$string: int Vedio 190 | com.example.camera.R$string: int action_settings 191 | com.example.camera.R$string: int album_enter_select 192 | com.example.camera.R$string: int album_phoot_select_all 193 | com.example.camera.R$string: int album_phoot_unselect_all 194 | com.example.camera.R$string: int album_photo_select_tip 195 | com.example.camera.R$string: int album_title 196 | com.example.camera.R$string: int api_cancel 197 | com.example.camera.R$string: int app_name 198 | com.example.camera.R$string: int common_delete 199 | com.example.camera.R$string: int hello_world 200 | com.example.camera.R$string: int pgcommon_download 201 | com.example.camera.R$string: int pgcommon_share 202 | com.example.camera.R$style: int AppBaseTheme 203 | com.example.camera.R$style: int AppTheme 204 | com.example.camera.R$style: int CheckBoxStyle 205 | com.example.camera.R$styleable: int[] TempImageView 206 | com.example.camera.R$styleable: int TempImageView_animat_id 207 | com.linj.album.view.AlbumGridView 208 | com.linj.album.view.AlbumGridView: AlbumGridView(android.content.Context,android.util.AttributeSet) 209 | com.linj.album.view.AlbumGridView: void setEditable(boolean) 210 | com.linj.album.view.AlbumGridView: boolean getEditable() 211 | com.linj.album.view.AlbumGridView: java.util.Set getSelectedItems() 212 | com.linj.album.view.AlbumItemView: int getPosition() 213 | com.linj.album.view.AlbumItemView: void setOnCheckedChangeListener(android.widget.CompoundButton$OnCheckedChangeListener) 214 | com.linj.album.view.AlbumItemView: void setOnClickListener(android.view.View$OnClickListener) 215 | com.linj.album.view.AlbumViewPager 216 | com.linj.album.view.AlbumViewPager: AlbumViewPager(android.content.Context,android.util.AttributeSet) 217 | com.linj.album.view.FilterImageView 218 | com.linj.album.view.FilterImageView: FilterImageView(android.content.Context,android.util.AttributeSet) 219 | com.linj.album.view.MatrixImageView 220 | com.linj.album.view.MatrixImageView: MatrixImageView(android.content.Context,android.util.AttributeSet) 221 | com.linj.album.view.MatrixImageView: void setOnMovingListener(com.linj.album.view.MatrixImageView$OnChildMovingListener) 222 | com.linj.album.view.MatrixImageView: void setImageBitmap(android.graphics.Bitmap) 223 | com.linj.camera.view.CameraContainer 224 | com.linj.camera.view.CameraContainer: CameraContainer(android.content.Context,android.util.AttributeSet) 225 | com.linj.camera.view.CameraContainer: com.linj.camera.view.CameraView$FlashMode getFlashMode() 226 | com.linj.camera.view.CameraContainer: void setFlashMode(com.linj.camera.view.CameraView$FlashMode) 227 | com.linj.camera.view.CameraContainer: void setRootPath(java.lang.String) 228 | com.linj.camera.view.CameraView: com.linj.camera.view.CameraView$FlashMode getFlashMode() 229 | com.linj.camera.view.CameraView: void setFlashMode(com.linj.camera.view.CameraView$FlashMode) 230 | com.linj.camera.view.CameraView: int getMaxZoom() 231 | com.linj.camera.view.CameraView: void setZoom(int) 232 | com.linj.camera.view.CameraView: int getZoom() 233 | com.linj.camera.view.CameraView$FlashMode: com.linj.camera.view.CameraView$FlashMode[] values() 234 | com.linj.camera.view.CameraView$FlashMode: com.linj.camera.view.CameraView$FlashMode valueOf(java.lang.String) 235 | com.linj.camera.view.FocusImageView: void setFocusImg(int) 236 | com.linj.camera.view.FocusImageView: void setFocusSucceedImg(int) 237 | com.linj.camera.view.TempImageView: void setImageBitmap(android.graphics.Bitmap) 238 | com.linj.camera.view.TempImageView: void setListener(com.linj.camera.view.CameraContainer$TakePictureListener) 239 | com.linj.imageloader.ImageLoader$Type: com.linj.imageloader.ImageLoader$Type[] values() 240 | com.linj.imageloader.ImageLoader$Type: com.linj.imageloader.ImageLoader$Type valueOf(java.lang.String) 241 | -------------------------------------------------------------------------------- /Camera/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 16 | android.library.reference.1=../CameraLibrary 17 | -------------------------------------------------------------------------------- /Camera/res/anim/focusview_show.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 17 | -------------------------------------------------------------------------------- /Camera/res/anim/tempview_show.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 17 | -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_back_to_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_back_to_camera_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_back_to_camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_back_to_camera_pressed.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_camera_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_camera_all.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_camera_all_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_camera_all_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_shutter_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_shutter_video.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_shutter_video_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_shutter_video_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_stop_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_stop_red.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/btn_stop_red_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/btn_stop_red_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/have_new_effect_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/have_new_effect_flag.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_auto_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_auto_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_auto_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_auto_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_off_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_off_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_off_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_off_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_on_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_on_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_on_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_on_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_torch_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_torch_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_flash_torch_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_flash_torch_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_my_center_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_my_center_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_my_center_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_my_center_pressed.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_setting_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_setting_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_setting_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_setting_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_sw_camera_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_sw_camera_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_camera_top_bar_sw_camera_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_camera_top_bar_sw_camera_normal.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_switch_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_switch_video.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/ic_switcher_menu_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/ic_switcher_menu_indicator.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/icon_back02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/icon_back02.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/icon_back02_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/icon_back02_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/icon_back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/icon_back2.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/icon_back2_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/icon_back2_click.png -------------------------------------------------------------------------------- /Camera/res/drawable-hdpi/video_detail_player_top_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-hdpi/video_detail_player_top_bg.9.png -------------------------------------------------------------------------------- /Camera/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinJZong/AndroidProject/a1db443ee019a8d629683fe03d4dca533f131894/Camera/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Camera/res/drawable/btn_back_02_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_back_to_camera_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_flash_auto.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_flash_off.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_flash_on.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_flash_torch.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_photopage_top_bar_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_play_vedio.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_shutter_camera.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_shutter_record.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/btn_shutter_recording.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/color_white_yellow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Camera/res/drawable/ic_camera_top_bar_my_center.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Camera/res/drawable/ic_camera_top_bar_setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Camera/res/drawable/ic_camera_top_bar_sw_camera.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Camera/res/drawable/picture_setting_album_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Camera/res/drawable/thumbnail_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Camera/res/drawable/title_text_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Camera/res/layout-land/album.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 16 | 17 | 30 | 31 | 38 | 39 | -------------------------------------------------------------------------------- /Camera/res/layout-port/album.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 17 | 18 | 29 | 30 | 43 | 44 | 51 | 52 | -------------------------------------------------------------------------------- /Camera/res/layout-port/album_bottom_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |