├── AndroidManifest.xml ├── NiceTags-master.iml ├── README.md ├── ant.properties ├── gen └── com │ └── example │ └── nice │ ├── BuildConfig.java │ ├── Manifest.java │ └── R.java ├── local.properties ├── out └── production │ └── AndroidCaptureCropTags │ ├── AndroidCaptureCropTags.apk │ ├── AndroidCaptureCropTags.unaligned.apk │ └── com │ └── example │ └── nice │ ├── ActivityAddTags.class │ ├── ActivityTagsShow.class │ ├── BuildConfig.class │ ├── LocalStatic.class │ ├── NiceWarm.class │ ├── R$anim.class │ ├── R$attr.class │ ├── R$color.class │ ├── R$drawable.class │ ├── R$id.class │ ├── R$layout.class │ ├── R$string.class │ ├── R.class │ ├── customview │ ├── FixWidthFrameLayout.class │ ├── FixWidthImageView.class │ ├── HGAlertDlg$HGAlertDlgClickListener.class │ ├── HGAlertDlg.class │ ├── HGTagPickerView$ContentItemView.class │ ├── HGTagPickerView$HGTagPickerViewListener.class │ ├── HGTagPickerView$TagAdapter.class │ ├── HGTagPickerView.class │ ├── HGTipsDlg$OnClickConfirmListener.class │ └── HGTipsDlg.class │ ├── model │ └── TagInfoModel.class │ ├── tagview │ ├── EmojiconTextView.class │ ├── TagInfo$Direction.class │ ├── TagInfo$Type.class │ ├── TagInfo.class │ ├── TagView$1$1.class │ ├── TagView$1.class │ ├── TagView$2$1.class │ ├── TagView$2.class │ ├── TagView$3$1.class │ ├── TagView$3.class │ ├── TagView$TagViewListener.class │ ├── TagView.class │ ├── TagViewLeft.class │ ├── TagViewRight.class │ ├── TagsView$1.class │ ├── TagsView$2.class │ ├── TagsView$3.class │ └── TagsView.class │ └── util │ ├── BitmapUtil.class │ ├── CaoNiMeiToast.class │ ├── Debug.class │ ├── FileUtil.class │ └── PathManager.class ├── png ├── 1111.png └── 222222222.jpg ├── proguard-project.txt ├── project.properties ├── res ├── anim │ ├── black_anim.xml │ ├── push_bottom_in.xml │ ├── push_up_out.xml │ └── white_anim.xml ├── drawable-hdpi │ ├── brand_tag_point_black_bg.png │ ├── brand_tag_point_white_bg.png │ ├── ic_launcher.png │ ├── icon_back.png │ ├── icon_camera_capture.png │ ├── icon_camera_capture_pressed.png │ ├── icon_camera_switch.png │ ├── icon_close_white.png │ ├── icon_place.png │ ├── tag_text_bg_left.9.png │ └── tag_text_bg_right.9.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable │ ├── bn_camera_capture_selector.xml │ ├── tag_picker_dlg_button_selector.xml │ ├── tag_picker_dlg_edittext_selector.xml │ ├── test.jpg │ └── white_rect_round_shape.xml ├── layout │ ├── activity_add_tags.xml │ ├── activity_capture.xml │ ├── activity_tags_show.xml │ ├── layout_header.xml │ ├── layout_ids.xml │ ├── main.xml │ ├── tag_picker_view.xml │ ├── view_alert_dlg.xml │ ├── view_content_item.xml │ ├── view_tag_left.xml │ ├── view_tag_right.xml │ ├── view_tags.xml │ └── view_tips_dlg.xml └── values │ ├── colors.xml │ └── strings.xml └── src └── com └── example └── nice ├── ActivityAddTags.java ├── ActivityTagsShow.java ├── LocalStatic.java ├── NiceWarm.java ├── customview ├── FixWidthFrameLayout.java ├── FixWidthImageView.java ├── HGAlertDlg.java ├── HGTagPickerView.java └── HGTipsDlg.java ├── model └── TagInfoModel.java ├── tagview ├── EmojiconTextView.java ├── TagInfo.java ├── TagView.java ├── TagViewLeft.java ├── TagViewRight.java └── TagsView.java └── util ├── BitmapUtil.java ├── CaoNiMeiToast.java ├── Debug.java ├── FileUtil.java └── PathManager.java /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /NiceTags-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/NiceTags-master.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/README.md -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/ant.properties -------------------------------------------------------------------------------- /gen/com/example/nice/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/gen/com/example/nice/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/example/nice/Manifest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/gen/com/example/nice/Manifest.java -------------------------------------------------------------------------------- /gen/com/example/nice/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/gen/com/example/nice/R.java -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/local.properties -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/AndroidCaptureCropTags.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/AndroidCaptureCropTags.apk -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/AndroidCaptureCropTags.unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/AndroidCaptureCropTags.unaligned.apk -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/ActivityAddTags.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/ActivityAddTags.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/ActivityTagsShow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/ActivityTagsShow.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/BuildConfig.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/LocalStatic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/LocalStatic.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/NiceWarm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/NiceWarm.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$anim.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$attr.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$color.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$drawable.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$id.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$layout.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R$string.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/R.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/FixWidthFrameLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/FixWidthFrameLayout.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/FixWidthImageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/FixWidthImageView.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGAlertDlg$HGAlertDlgClickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGAlertDlg$HGAlertDlgClickListener.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGAlertDlg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGAlertDlg.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView$ContentItemView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView$ContentItemView.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView$HGTagPickerViewListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView$HGTagPickerViewListener.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView$TagAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView$TagAdapter.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTagPickerView.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTipsDlg$OnClickConfirmListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTipsDlg$OnClickConfirmListener.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTipsDlg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/customview/HGTipsDlg.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/model/TagInfoModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/model/TagInfoModel.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/EmojiconTextView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/EmojiconTextView.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagInfo$Direction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagInfo$Direction.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagInfo$Type.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagInfo$Type.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagInfo.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$1$1.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$1.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$2$1.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$2.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$3$1.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$3.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$TagViewListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView$TagViewListener.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagView.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagViewLeft.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagViewLeft.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagViewRight.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagViewRight.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView$1.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView$2.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView$3.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/tagview/TagsView.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/util/BitmapUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/util/BitmapUtil.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/util/CaoNiMeiToast.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/util/CaoNiMeiToast.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/util/Debug.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/util/Debug.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/util/FileUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/util/FileUtil.class -------------------------------------------------------------------------------- /out/production/AndroidCaptureCropTags/com/example/nice/util/PathManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/out/production/AndroidCaptureCropTags/com/example/nice/util/PathManager.class -------------------------------------------------------------------------------- /png/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/png/1111.png -------------------------------------------------------------------------------- /png/222222222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/png/222222222.jpg -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/project.properties -------------------------------------------------------------------------------- /res/anim/black_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/anim/black_anim.xml -------------------------------------------------------------------------------- /res/anim/push_bottom_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/anim/push_bottom_in.xml -------------------------------------------------------------------------------- /res/anim/push_up_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/anim/push_up_out.xml -------------------------------------------------------------------------------- /res/anim/white_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/anim/white_anim.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/brand_tag_point_black_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/brand_tag_point_black_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/brand_tag_point_white_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/brand_tag_point_white_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/icon_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_camera_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/icon_camera_capture.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_camera_capture_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/icon_camera_capture_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/icon_camera_switch.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/icon_close_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/icon_place.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tag_text_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/tag_text_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tag_text_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-hdpi/tag_text_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bn_camera_capture_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable/bn_camera_capture_selector.xml -------------------------------------------------------------------------------- /res/drawable/tag_picker_dlg_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable/tag_picker_dlg_button_selector.xml -------------------------------------------------------------------------------- /res/drawable/tag_picker_dlg_edittext_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable/tag_picker_dlg_edittext_selector.xml -------------------------------------------------------------------------------- /res/drawable/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable/test.jpg -------------------------------------------------------------------------------- /res/drawable/white_rect_round_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/drawable/white_rect_round_shape.xml -------------------------------------------------------------------------------- /res/layout/activity_add_tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/activity_add_tags.xml -------------------------------------------------------------------------------- /res/layout/activity_capture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/activity_capture.xml -------------------------------------------------------------------------------- /res/layout/activity_tags_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/activity_tags_show.xml -------------------------------------------------------------------------------- /res/layout/layout_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/layout_header.xml -------------------------------------------------------------------------------- /res/layout/layout_ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/layout_ids.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/tag_picker_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/tag_picker_view.xml -------------------------------------------------------------------------------- /res/layout/view_alert_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/view_alert_dlg.xml -------------------------------------------------------------------------------- /res/layout/view_content_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/view_content_item.xml -------------------------------------------------------------------------------- /res/layout/view_tag_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/view_tag_left.xml -------------------------------------------------------------------------------- /res/layout/view_tag_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/view_tag_right.xml -------------------------------------------------------------------------------- /res/layout/view_tags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/view_tags.xml -------------------------------------------------------------------------------- /res/layout/view_tips_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/layout/view_tips_dlg.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/example/nice/ActivityAddTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/ActivityAddTags.java -------------------------------------------------------------------------------- /src/com/example/nice/ActivityTagsShow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/ActivityTagsShow.java -------------------------------------------------------------------------------- /src/com/example/nice/LocalStatic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/LocalStatic.java -------------------------------------------------------------------------------- /src/com/example/nice/NiceWarm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/NiceWarm.java -------------------------------------------------------------------------------- /src/com/example/nice/customview/FixWidthFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/customview/FixWidthFrameLayout.java -------------------------------------------------------------------------------- /src/com/example/nice/customview/FixWidthImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/customview/FixWidthImageView.java -------------------------------------------------------------------------------- /src/com/example/nice/customview/HGAlertDlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/customview/HGAlertDlg.java -------------------------------------------------------------------------------- /src/com/example/nice/customview/HGTagPickerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/customview/HGTagPickerView.java -------------------------------------------------------------------------------- /src/com/example/nice/customview/HGTipsDlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/customview/HGTipsDlg.java -------------------------------------------------------------------------------- /src/com/example/nice/model/TagInfoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/model/TagInfoModel.java -------------------------------------------------------------------------------- /src/com/example/nice/tagview/EmojiconTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/tagview/EmojiconTextView.java -------------------------------------------------------------------------------- /src/com/example/nice/tagview/TagInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/tagview/TagInfo.java -------------------------------------------------------------------------------- /src/com/example/nice/tagview/TagView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/tagview/TagView.java -------------------------------------------------------------------------------- /src/com/example/nice/tagview/TagViewLeft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/tagview/TagViewLeft.java -------------------------------------------------------------------------------- /src/com/example/nice/tagview/TagViewRight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/tagview/TagViewRight.java -------------------------------------------------------------------------------- /src/com/example/nice/tagview/TagsView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/tagview/TagsView.java -------------------------------------------------------------------------------- /src/com/example/nice/util/BitmapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/util/BitmapUtil.java -------------------------------------------------------------------------------- /src/com/example/nice/util/CaoNiMeiToast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/util/CaoNiMeiToast.java -------------------------------------------------------------------------------- /src/com/example/nice/util/Debug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/util/Debug.java -------------------------------------------------------------------------------- /src/com/example/nice/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/util/FileUtil.java -------------------------------------------------------------------------------- /src/com/example/nice/util/PathManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicewarm/NiceTags/HEAD/src/com/example/nice/util/PathManager.java --------------------------------------------------------------------------------