├── Docs ├── README.md └── Shopnc │ └── ShopNC+B2B2C开发手册.pdf ├── Picture └── 20150803.png ├── Psd ├── README.md ├── app-circle-home.jpg ├── app-circle-theme.jpg ├── app-circle.jpg ├── app-home.jpg ├── app-login.jpg ├── app-task.jpg ├── app-trade.jpg └── app-user-center.jpg ├── README.md └── Src ├── .DS_Store ├── .gradle ├── 2.2.1 │ └── taskArtifacts │ │ ├── cache.properties │ │ ├── cache.properties.lock │ │ ├── fileHashes.bin │ │ ├── fileSnapshots.bin │ │ ├── outputFileStates.bin │ │ └── taskArtifacts.bin └── 2.4 │ └── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── outputFileStates.bin │ └── taskArtifacts.bin ├── README.md ├── Shopnc.iml ├── Src.iml ├── app ├── .DS_Store ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ └── core.jar ├── proguard-rules.pro └── src │ ├── .DS_Store │ ├── androidTest │ └── java │ │ └── com │ │ └── daxueoo │ │ └── shopnc │ │ ├── ApplicationTest.java │ │ └── Test.class │ └── main │ ├── .DS_Store │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── daxueoo │ │ └── shopnc │ │ ├── DaxueooApplication.java │ │ ├── adapter │ │ ├── CircleAdapter.java │ │ ├── GoodsListAdapter.java │ │ ├── HomeCustomAdapter.java │ │ ├── ImagePagerAdapter.java │ │ ├── NoticeListAdapter.java │ │ ├── QaAdapter.java │ │ ├── RecycleBin.java │ │ ├── RecyclingPagerAdapter.java │ │ ├── ResourceAdapter.java │ │ ├── StatusCommentAdapter.java │ │ ├── StickThemeListAdapter.java │ │ ├── TaskAdapter.java │ │ ├── ThemeAdapter.java │ │ ├── ThemeCommentAdapter.java │ │ ├── ThemeListAdapter.java │ │ ├── TopicAdapter.java │ │ ├── TradeAdapter.java │ │ ├── TrendAdapter.java │ │ ├── UserAdapter.java │ │ └── ViewPagerAdapter.java │ │ ├── api │ │ ├── AddTask.java │ │ ├── EditTask.java │ │ ├── FinishTask.java │ │ ├── GetArticleList.java │ │ ├── GetCircleThemeList.java │ │ ├── GetTaskList.java │ │ ├── GetThemeComment.java │ │ ├── PostComment.java │ │ └── TradeCollect.java │ │ ├── bean │ │ ├── ArticleDatas.java │ │ ├── ArticleList.java │ │ ├── ArticleListData.java │ │ ├── CircleThemeList.java │ │ ├── CommentList.java │ │ ├── CommentListData.java │ │ ├── Reply.java │ │ ├── Task.java │ │ ├── TaskList.java │ │ ├── TaskListData.java │ │ ├── Theme.java │ │ └── ThemeListData.java │ │ ├── cache │ │ ├── BitmapCache.java │ │ ├── ImageCacheManger.java │ │ ├── ImageLreCache.java │ │ └── RequesQueuetManager.java │ │ ├── handler │ │ └── BaseHandler.java │ │ ├── model │ │ ├── BaseMessage.java │ │ ├── CircleMessage.java │ │ ├── Comment.java │ │ ├── ExploreMessage.java │ │ ├── GoodsMessage.java │ │ ├── Notice.java │ │ ├── PicUrls.java │ │ ├── Status.java │ │ ├── ThemeMessage.java │ │ ├── TopicMessage.java │ │ ├── TradeMessage.java │ │ ├── TrendMessage.java │ │ ├── User.java │ │ ├── UserMessage.java │ │ └── Visible.java │ │ ├── network │ │ ├── ServiceGenerator.java │ │ └── adapter │ │ │ └── NormalPostRequest.java │ │ ├── scan │ │ ├── AutoFocusCallback.java │ │ ├── CameraConfigurationManager.java │ │ ├── CameraManager.java │ │ ├── CaptureActivity.java │ │ ├── CaptureActivityHandler.java │ │ ├── DecodeFormatManager.java │ │ ├── DecodeHandler.java │ │ ├── DecodeThread.java │ │ ├── FinishListener.java │ │ ├── FlashlightManager.java │ │ ├── HttpUtils.java │ │ ├── InactivityTimer.java │ │ ├── Intents.java │ │ ├── PlanarYUVLuminanceSource.java │ │ ├── PreviewCallback.java │ │ ├── ViewfinderResultPointCallback.java │ │ └── ViewfinderView.java │ │ ├── sdk │ │ └── Shopnc.java │ │ ├── service │ │ └── BaseService.java │ │ ├── ui │ │ ├── activity │ │ │ ├── AboutActivity.java │ │ │ ├── AddTaskActivity.java │ │ │ ├── BaseActivity.java │ │ │ ├── BaseFragmentActivity.java │ │ │ ├── CircleProfileActivity.java │ │ │ ├── CreateCircleActivity.java │ │ │ ├── CreateQaActivity.java │ │ │ ├── CreateThemeActivity.java │ │ │ ├── CustomActivity.java │ │ │ ├── DetailActivity.java │ │ │ ├── EmojiActivity.java │ │ │ ├── GuideActivity.java │ │ │ ├── ImagePreviewActivity.java │ │ │ ├── JoinCircleActivity.java │ │ │ ├── LoginActivity.java │ │ │ ├── MainTabActivity.java │ │ │ ├── NoticeListActivity.java │ │ │ ├── QaActivity.java │ │ │ ├── RegisterActivity.java │ │ │ ├── SettingActivity.java │ │ │ ├── SplashActivity.java │ │ │ ├── TaskActivity.java │ │ │ ├── TaskDetailActivity.java │ │ │ ├── ThemeListActivity.java │ │ │ ├── TradeActivity.java │ │ │ ├── TradeDetailActivity.java │ │ │ ├── UserFollowActivity.java │ │ │ ├── UserInfoActivity.java │ │ │ └── WebViewActivity.java │ │ └── fragment │ │ │ ├── BaseFragment.java │ │ │ ├── CircleDetailFragment.java │ │ │ ├── CircleFragment.java │ │ │ ├── CircleProfileFragment.java │ │ │ ├── CommonDetailFragment.java │ │ │ ├── CustomFragment.java │ │ │ ├── HomeFragment.java │ │ │ ├── HomeIndexFragment.java │ │ │ ├── HomeTrendsFragment.java │ │ │ ├── Mall2Fragment.java │ │ │ ├── MallFragment.java │ │ │ ├── NoticeListFragment.java │ │ │ ├── QaFragment.java │ │ │ ├── ResourceFragment.java │ │ │ ├── SettingFragment.java │ │ │ ├── TaskListFragment.java │ │ │ ├── ThemeDetailFragment.java │ │ │ ├── TradeListFragment.java │ │ │ ├── UserFollowFragment.java │ │ │ ├── UserFragment.java │ │ │ └── UserInfoFragment.java │ │ ├── utils │ │ ├── ACache.java │ │ ├── AnimationUtil.java │ │ ├── ArrayUtils.java │ │ ├── ConstUtils.java │ │ ├── DateUtils.java │ │ ├── DiskLruCache.java │ │ ├── EmotionUtils.java │ │ ├── GestureUtils.java │ │ ├── ImageUtils.java │ │ ├── ListUtils.java │ │ ├── ObjectUtils.java │ │ ├── SharedPreferencesUtils.java │ │ ├── StringUtils.java │ │ ├── SystemUtils.java │ │ ├── TextUtils.java │ │ ├── TitleBuilder.java │ │ └── ToastUtils.java │ │ └── widgets │ │ ├── ForScrollViewListView.java │ │ ├── RelativeTimeTextView.java │ │ ├── RoundedImageView.java │ │ ├── SelectorImageView.java │ │ ├── VerticalScrollTextView.java │ │ ├── WrapHeightGridView.java │ │ └── pulltozoom │ │ ├── IPullToZoom.java │ │ ├── PullToZoomBase.java │ │ ├── PullToZoomListViewEx.java │ │ └── PullToZoomScrollViewEx.java │ └── res │ ├── .DS_Store │ ├── anim │ ├── close.xml │ ├── show.xml │ ├── zoom_enter.xml │ └── zoom_exit.xml │ ├── drawable-hdpi │ ├── button_pressed.png │ ├── button_unpress.png │ ├── cancel_btn_bg_normal.png │ ├── cancel_btn_bg_pressed.png │ ├── dark_dot.png │ ├── drawer_shadow.9.png │ ├── guide_350_01.png │ ├── guide_350_02.png │ ├── guide_350_03.png │ ├── guide_350_04.png │ ├── guide_350_05.png │ └── white_dot.png │ ├── drawable-ldpi │ ├── button_pressed.png │ └── button_unpress.png │ ├── drawable-mdpi │ ├── button_pressed.png │ └── button_unpress.png │ ├── drawable-xhdpi │ ├── .DS_Store │ ├── bg_node_normal.9.png │ ├── bg_node_pressed.9.png │ ├── d_aini.png │ ├── d_aoteman.png │ ├── d_baibai.png │ ├── d_beishang.png │ ├── d_bishi.png │ ├── d_bizui.png │ ├── d_chanzui.png │ ├── d_chijing.png │ ├── d_dahaqi.png │ ├── d_dalian.png │ ├── d_ding.png │ ├── d_doge.png │ ├── d_fangdumianju.png │ ├── d_feizao.png │ ├── d_ganmao.png │ ├── d_guzhang.png │ ├── d_haha.png │ ├── d_haixiu.png │ ├── d_han.png │ ├── d_hehe.png │ ├── d_heixian.png │ ├── d_heng.png │ ├── d_huaxin.png │ ├── d_jiyan.png │ ├── d_keai.png │ ├── d_kelian.png │ ├── d_ku.png │ ├── d_kun.png │ ├── d_landelini.png │ ├── d_lang.png │ ├── d_lei.png │ ├── d_miao.png │ ├── d_nanhaier.png │ ├── d_nu.png │ ├── d_numa.png │ ├── d_nvhaier.png │ ├── d_qian.png │ ├── d_qinqin.png │ ├── d_shayan.png │ ├── d_shengbing.png │ ├── d_shenshou.png │ ├── d_shiwang.png │ ├── d_shuai.png │ ├── d_shuijiao.png │ ├── d_sikao.png │ ├── d_taikaixin.png │ ├── d_touxiao.png │ ├── d_travel.png │ ├── d_tu.png │ ├── d_tuzi.png │ ├── d_wabishi.png │ ├── d_weiqu.png │ ├── d_xiaoku.png │ ├── d_xiongmao.png │ ├── d_xixi.png │ ├── d_xu.png │ ├── d_yinxian.png │ ├── d_yiwen.png │ ├── d_youhengheng.png │ ├── d_yun.png │ ├── d_zhuakuang.png │ ├── d_zhutou.png │ ├── d_zuiyou.png │ ├── d_zuohengheng.png │ ├── ddd_106.png │ ├── default_goods_img.png │ ├── default_group_logo.gif │ ├── divide_10_top_bottom.png │ ├── divide_15_bottom.png │ ├── divide_15_top.png │ ├── divide_15_top_bottom.png │ ├── home_message.png │ ├── home_more.png │ ├── home_serve.png │ ├── home_task.png │ ├── ic_img_line_v.png │ ├── ic_img_profile_bg.jpg │ ├── ic_img_user_default.png │ ├── ic_list_right_arr.png │ ├── ic_my_trader.png │ ├── icon_add_img.png │ ├── icon_album.png │ ├── icon_checkout_normal.png │ ├── icon_circle_create.png │ ├── icon_default_avatar.png │ ├── icon_default_explore.png │ ├── icon_defautl_avatar_white.png │ ├── icon_emoticon.png │ ├── icon_explore_message_pressed.png │ ├── icon_explore_notice.png │ ├── icon_explore_order_pressed.png │ ├── icon_explore_qa_dr.png │ ├── icon_explore_qa_zj.png │ ├── icon_explore_task_pressed.png │ ├── icon_explore_trade_pressed.png │ ├── icon_flag.png │ ├── icon_home_notice.png │ ├── icon_home_theme.png │ ├── icon_img_normal.png │ ├── icon_like.png │ ├── icon_likes.png │ ├── icon_menu_normal.png │ ├── icon_menu_pressed.png │ ├── icon_no_like.png │ ├── icon_qa_edit.png │ ├── icon_question_normal.png │ ├── icon_replies.png │ ├── icon_scan_article_normal.png │ ├── icon_scan_article_pressed.png │ ├── icon_scan_goods_normal.png │ ├── icon_scan_goods_pressed.png │ ├── icon_scan_lab_normal.png │ ├── icon_scan_lab_pressed.png │ ├── icon_scan_normal.png │ ├── icon_scan_shebei_normal.png │ ├── icon_scan_shebei_pressed.png │ ├── icon_search_normal.png │ ├── icon_send.png │ ├── icon_shopping_normal.png │ ├── icon_sort_hot_normal.png │ ├── icon_sort_hot_pressed.png │ ├── icon_sort_new_normal.png │ ├── icon_sort_new_pressed.png │ ├── icon_sort_price_normal.png │ ├── icon_sort_price_pressed.png │ ├── icon_sort_sell_count_normal.png │ ├── icon_sort_sell_count_pressed.png │ ├── icon_star_0.png │ ├── icon_star_1.png │ ├── icon_star_2.png │ ├── icon_star_3.png │ ├── icon_star_4.png │ ├── icon_star_5.png │ ├── icon_tab_explor_normal.png │ ├── icon_tab_explor_press.png │ ├── icon_theme_to_top.png │ ├── icon_theme_to_top_pressed.png │ ├── icon_view.png │ ├── icon_views.png │ ├── navigationbar_back.png │ ├── navigationbar_back_highlighted.png │ ├── push_checkbox_off.png │ ├── push_checkbox_on.png │ ├── setting_button_esc.9.png │ ├── setting_icon_normal.png │ ├── setting_icon_press.png │ ├── tabbar_add_icon.png │ ├── tabbar_add_icon_pressed.png │ ├── tabbar_circle.png │ ├── tabbar_circle_highlighted.png │ ├── tabbar_discover.png │ ├── tabbar_discover_highlighted.png │ ├── tabbar_home.png │ ├── tabbar_home_highlighted.png │ ├── tabbar_mall.png │ ├── tabbar_mall_highlighted.png │ ├── tabbar_message_center.png │ ├── tabbar_message_center_highlighted.png │ ├── tabbar_profile.png │ ├── tabbar_profile_highlighted.png │ ├── tabbar_res.png │ ├── tabbar_res_highlighted.png │ ├── tabbar_scan.png │ ├── tabbar_scan_highlighted.png │ ├── tabbar_trade.png │ ├── tabbar_trade_highlighted.png │ ├── task_icon_press.png │ ├── test_circle.png │ ├── tilebar_right_btn.png │ ├── timeline_icon_comment.png │ ├── timeline_icon_comment_disable.png │ ├── timeline_icon_like.png │ ├── timeline_icon_like_disable.png │ ├── timeline_icon_retweet.png │ ├── timeline_icon_retweet_disable.png │ ├── timeline_icon_unlike.png │ ├── title_bar_back.png │ ├── title_bar_back_highlighted.png │ ├── user_btn_goods.png │ ├── user_btn_posts.png │ ├── user_btn_send.png │ ├── user_btn_trade.png │ ├── user_fav_goods.png │ ├── user_fav_trade.png │ ├── user_home_arrow.png │ ├── user_home_maopao.png │ ├── user_home_project.png │ ├── user_home_topic.png │ └── welcome_android_slogan.png │ ├── drawable │ ├── bg_btn.xml │ ├── bg_btn_normal.xml │ ├── bg_btn_pressed.xml │ ├── bg_edittext.xml │ ├── bg_edittext_create.xml │ ├── bg_edittext_focused.xml │ ├── bg_edittext_normal.xml │ ├── bg_lgray2dgray_sel.xml │ ├── bg_node.xml │ ├── bg_retweet_sel.xml │ ├── bg_tran2gray_sel.xml │ ├── bg_tv_task_date_normal.xml │ ├── bg_tv_task_date_pressed.xml │ ├── bg_tv_title_normal.xml │ ├── bg_white2gray_sel.xml │ ├── btn_innew.xml │ ├── cancel_scan_selector.xml │ ├── correct_oran.xml │ ├── correct_oran_dark.xml │ ├── correct_oran_sel.xml │ ├── dot.xml │ ├── holo_selector.xml │ ├── ic_my_order.png │ ├── icon_add.xml │ ├── icon_circle.xml │ ├── icon_home.xml │ ├── icon_mall.xml │ ├── icon_scan.xml │ ├── icon_selfinfo.xml │ ├── icon_setting.xml │ ├── icon_square.xml │ ├── icon_trade.xml │ ├── item_border.xml │ ├── item_border_selected.xml │ ├── layerlist_tab_indicator_sel.xml │ ├── list_item_selector.xml │ ├── logo.png │ ├── navigationbar_back_sel.xml │ ├── push_checkbox.xml │ ├── resource_list_selecter.xml │ ├── shadow.xml │ ├── shadowright.xml │ ├── txtcolor_gray2green_sel.xml │ ├── txtcolor_oran2alpha_sel.xml │ └── whats_new_start_btn.xml │ ├── layout │ ├── activity_about.xml │ ├── activity_add_task.xml │ ├── activity_circle_profile.xml │ ├── activity_create_circle.xml │ ├── activity_create_qa.xml │ ├── activity_create_theme.xml │ ├── activity_custom.xml │ ├── activity_detail.xml │ ├── activity_fragment.xml │ ├── activity_guide.xml │ ├── activity_image_preview.xml │ ├── activity_join_circle.xml │ ├── activity_login.xml │ ├── activity_main_tab.xml │ ├── activity_register.xml │ ├── activity_scan.xml │ ├── activity_setting.xml │ ├── activity_splash.xml │ ├── activity_task_detail.xml │ ├── activity_trade_detail.xml │ ├── activity_web_view.xml │ ├── divide_13_top.xml │ ├── divide_15_bottom.xml │ ├── divide_15_top.xml │ ├── divide_15_top_bottom.xml │ ├── divide_1_12.xml │ ├── drawer_list_item.xml │ ├── fragment_circle.xml │ ├── fragment_circle_detail.xml │ ├── fragment_circle_profile.xml │ ├── fragment_custom.xml │ ├── fragment_goods_list.xml │ ├── fragment_home.xml │ ├── fragment_home_index.xml │ ├── fragment_home_trends.xml │ ├── fragment_mall.xml │ ├── fragment_notice_list.xml │ ├── fragment_planet.xml │ ├── fragment_setting.xml │ ├── fragment_task_list.xml │ ├── fragment_theme_detail.xml │ ├── fragment_trade.xml │ ├── fragment_trade_list.xml │ ├── fragment_user.xml │ ├── fragment_user_follow.xml │ ├── fragment_user_info.xml │ ├── guide_five.xml │ ├── guide_four.xml │ ├── guide_one.xml │ ├── guide_three.xml │ ├── guide_two.xml │ ├── include_avatar.xml │ ├── include_avatar2.xml │ ├── include_cart_bar.xml │ ├── include_circle_op_bar.xml │ ├── include_circle_qa_bar.xml │ ├── include_mall_search_bar.xml │ ├── include_retweeted_status.xml │ ├── include_shop_sort_bar.xml │ ├── include_status_controlbar.xml │ ├── include_status_image.xml │ ├── include_stick_theme_list.xml │ ├── include_task_date_bar.xml │ ├── include_theme_op_bar.xml │ ├── include_theme_reply_bar.xml │ ├── include_titlebar.xml │ ├── item_comment.xml │ ├── item_gv_category.xml │ ├── item_gv_home_custum.xml │ ├── item_list_cart_shop.xml │ ├── item_list_circle.xml │ ├── item_list_shop.xml │ ├── item_list_store.xml │ ├── item_list_user.xml │ ├── item_notice.xml │ ├── item_qa.xml │ ├── item_resource.xml │ ├── item_status.xml │ ├── item_stick_theme.xml │ ├── item_task.xml │ ├── item_theme.xml │ ├── item_theme_list.xml │ ├── item_topic.xml │ ├── item_trade.xml │ ├── item_trend.xml │ ├── item_user_follow.xml │ ├── list_divider_small.xml │ ├── list_item_common_arrow.xml │ ├── menu.xml │ ├── profile_content_view.xml │ ├── profile_head_view.xml │ ├── profile_zoom_view.xml │ ├── topic_detail_comment_head.xml │ └── topic_detail_head.xml │ ├── menu │ ├── menu_about.xml │ ├── menu_circle_profile.xml │ ├── menu_create_circle.xml │ ├── menu_custom.xml │ ├── menu_join_circle.xml │ ├── menu_main.xml │ └── menu_trade_detail.xml │ ├── mipmap-hdpi │ ├── banner1.jpg │ ├── banner2.jpg │ ├── banner3.jpg │ ├── banner4.jpg │ ├── ic_add_white_24dp.png │ ├── ic_create_white_24dp.png │ ├── ic_launcher.png │ ├── ic_no_user.png │ ├── top_home_01.png │ └── top_home_02.png │ ├── mipmap-mdpi │ ├── ic_add_white_24dp.png │ ├── ic_create_white_24dp.png │ ├── ic_launcher.png │ └── ic_no_user.png │ ├── mipmap-xhdpi │ ├── default_goods_image.png │ ├── gogopher.jpg │ ├── ic_add_white_24dp.png │ ├── ic_create_white_24dp.png │ ├── ic_launcher.png │ └── ic_no_user.png │ ├── mipmap-xxhdpi │ ├── ic_add_white_24dp.png │ ├── ic_create_white_24dp.png │ ├── ic_launcher.png │ └── ic_no_user.png │ ├── mipmap-xxxhdpi │ ├── ic_add_white_24dp.png │ ├── ic_create_white_24dp.png │ └── ic_no_user.png │ ├── values-w820dp │ └── dimens.xml │ ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── preferences.xml ├── build.gradle ├── gradle.properties ├── gradle ├── .DS_Store └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle /Docs/README.md: -------------------------------------------------------------------------------- 1 | ##这里是文档列表以及一些开发记录 2 | ###文档列表 3 | + 需求文档 4 | + 设计文档 5 | + 界面设计文档 6 | + api文档 7 | + 数据库文档 8 | + 思维导图 9 | 10 | ###开发记录 11 | 20150801 立项。。 -------------------------------------------------------------------------------- /Docs/Shopnc/ShopNC+B2B2C开发手册.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Docs/Shopnc/ShopNC+B2B2C开发手册.pdf -------------------------------------------------------------------------------- /Picture/20150803.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Picture/20150803.png -------------------------------------------------------------------------------- /Psd/README.md: -------------------------------------------------------------------------------- 1 | ##app设计图 2 | 3 | 4 | -------------------------------------------------------------------------------- /Psd/app-circle-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-circle-home.jpg -------------------------------------------------------------------------------- /Psd/app-circle-theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-circle-theme.jpg -------------------------------------------------------------------------------- /Psd/app-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-circle.jpg -------------------------------------------------------------------------------- /Psd/app-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-home.jpg -------------------------------------------------------------------------------- /Psd/app-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-login.jpg -------------------------------------------------------------------------------- /Psd/app-task.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-task.jpg -------------------------------------------------------------------------------- /Psd/app-trade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-trade.jpg -------------------------------------------------------------------------------- /Psd/app-user-center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Psd/app-user-center.jpg -------------------------------------------------------------------------------- /Src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.DS_Store -------------------------------------------------------------------------------- /Src/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Aug 06 09:36:18 CST 2015 2 | -------------------------------------------------------------------------------- /Src/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /Src/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Src/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Src/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /Src/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Src/.gradle/2.4/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Aug 04 13:58:43 CST 2015 2 | -------------------------------------------------------------------------------- /Src/.gradle/2.4/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.4/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /Src/.gradle/2.4/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.4/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /Src/.gradle/2.4/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.4/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /Src/.gradle/2.4/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.4/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /Src/.gradle/2.4/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/.gradle/2.4/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /Src/README.md: -------------------------------------------------------------------------------- 1 | ## 2 | 在断网的情况下,isNetConnected异常。 -------------------------------------------------------------------------------- /Src/Shopnc.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Src/Src.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Src/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/.DS_Store -------------------------------------------------------------------------------- /Src/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Src/app/libs/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/libs/core.jar -------------------------------------------------------------------------------- /Src/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/user/Android/Sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /Src/app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/.DS_Store -------------------------------------------------------------------------------- /Src/app/src/androidTest/java/com/daxueoo/shopnc/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /Src/app/src/androidTest/java/com/daxueoo/shopnc/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/androidTest/java/com/daxueoo/shopnc/Test.class -------------------------------------------------------------------------------- /Src/app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/.DS_Store -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/DaxueooApplication.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc; 2 | 3 | import android.app.Application; 4 | 5 | import com.bugtags.library.Bugtags; 6 | import com.squareup.leakcanary.LeakCanary; 7 | 8 | /** 9 | * Created by user on 15-8-31. 10 | */ 11 | public class DaxueooApplication extends Application{ 12 | public static String TAG; 13 | private static DaxueooApplication application; 14 | 15 | public static DaxueooApplication getInstance() { 16 | return application; 17 | } 18 | 19 | @Override 20 | public void onCreate() { 21 | super.onCreate(); 22 | LeakCanary.install(this); 23 | TAG = this.getClass().getSimpleName(); 24 | application = this; 25 | 26 | // 移动应用测试 27 | Bugtags.start("da79d9f48cac87d186d86e1a8eba4814", this, Bugtags.BTGInvocationEventBubble); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/AddTask.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import com.daxueoo.shopnc.bean.TaskList; 4 | 5 | import org.json.JSONObject; 6 | 7 | import retrofit.Callback; 8 | import retrofit.client.Response; 9 | import retrofit.http.Field; 10 | import retrofit.http.FormUrlEncoded; 11 | import retrofit.http.POST; 12 | import retrofit.http.Query; 13 | 14 | /** 15 | * Created by user on 15-9-9. 16 | */ 17 | public interface AddTask { 18 | @FormUrlEncoded 19 | @POST("/index.php?act=task&op=createTask") 20 | public void AddTask(@Field("key") String key, @Field("task_title") String title, @Field("task_content") String content, @Field("task_tag") String tag, @Field("task_publish_time") String publish_time, Callback response); 21 | } 22 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/EditTask.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import org.json.JSONObject; 4 | 5 | import retrofit.Callback; 6 | import retrofit.http.Field; 7 | import retrofit.http.FormUrlEncoded; 8 | import retrofit.http.POST; 9 | import retrofit.http.Query; 10 | 11 | /** 12 | * Created by user on 15-9-9. 13 | */ 14 | public interface EditTask { 15 | @FormUrlEncoded 16 | @POST("/index.php?act=task&op=updateTask") 17 | public void EditTask(@Field("key") String key, @Field("task_title") String title, @Field("task_content") String content, @Field("task_tag") String tag, @Field("task_publish_time") String publish_time, @Field("task_id") String task_id,Callback response); 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/FinishTask.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import org.json.JSONObject; 4 | 5 | import retrofit.Callback; 6 | import retrofit.http.Field; 7 | import retrofit.http.FormUrlEncoded; 8 | import retrofit.http.POST; 9 | 10 | /** 11 | * Created by user on 15-9-11. 12 | */ 13 | public interface FinishTask { 14 | @FormUrlEncoded 15 | @POST("/index.php?act=task&op=finishTask") 16 | public void finishTask(@Field("key") String key, @Field("task_id") String task_id, Callback jsonObjectCallback); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/GetArticleList.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import com.daxueoo.shopnc.bean.ArticleListData; 4 | import com.daxueoo.shopnc.bean.CircleThemeList; 5 | 6 | import retrofit.Callback; 7 | import retrofit.http.GET; 8 | import retrofit.http.Query; 9 | 10 | /** 11 | * Created by guodont on 15/9/19. 12 | */ 13 | 14 | public interface GetArticleList { 15 | @GET("/index.php?act=article&op=article_list") 16 | public void GetHomeNotice(@Query("ac_id")String classId, Callback responseCallback); 17 | } 18 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/GetCircleThemeList.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import com.daxueoo.shopnc.bean.CircleThemeList; 4 | 5 | import retrofit.Callback; 6 | import retrofit.http.GET; 7 | import retrofit.http.Query; 8 | 9 | /** 10 | * Created by user on 15-9-12. 11 | */ 12 | public interface GetCircleThemeList { 13 | @GET("") 14 | public void GetThemeList(); 15 | 16 | @GET("/index.php?act=circle&op=circleThemes") 17 | public void GetThemeListPage(@Query("curpage")String curpage, @Query("page")String page, @Query("circle_id")String circleId, Callback responseCallback); 18 | 19 | @GET("/index.php?act=circle&op=get_reply_themelist") 20 | public void GetHomeThemeListPage(@Query("curpage")String curpage, @Query("page")String page, Callback responseCallback); 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/GetTaskList.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | /** 4 | * Created by user on 15-9-3. 5 | */ 6 | 7 | import com.daxueoo.shopnc.bean.TaskList; 8 | import com.squareup.okhttp.Call; 9 | 10 | 11 | import retrofit.Callback; 12 | import retrofit.client.Response; 13 | import retrofit.http.GET; 14 | import retrofit.http.Query; 15 | 16 | /** 17 | * Created by user on 15-9-3. 18 | */ 19 | public interface GetTaskList { 20 | @GET("/index.php?act=task&op=tasks") 21 | public void GetTaskList(@Query("type") String username, @Query("date") String date, @Query("key") String key, @Query("page") String page, @Query("curpage") String curpage,Callback response); 22 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/GetThemeComment.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import com.daxueoo.shopnc.bean.CommentList; 4 | 5 | import retrofit.Callback; 6 | import retrofit.client.Response; 7 | import retrofit.http.GET; 8 | import retrofit.http.Query; 9 | 10 | /** 11 | * Created by user on 15-9-11. 12 | */ 13 | public interface GetThemeComment { 14 | @GET("/index.php?act=circle_theme&op=theme_detail") 15 | public void GetThemeComment(@Query("c_id") String c_id, @Query("t_id") String t_id,@Query("key") String key,@Query("only_id") String only_id, Callback commentListCallback); 16 | } 17 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/PostComment.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | import org.json.JSONObject; 4 | 5 | import retrofit.Callback; 6 | import retrofit.http.Field; 7 | import retrofit.http.FormUrlEncoded; 8 | import retrofit.http.POST; 9 | 10 | /** 11 | * Created by user on 15-9-11. 12 | */ 13 | public interface PostComment { 14 | @FormUrlEncoded 15 | @POST("/index.php?act=circle_theme&op=create_reply") 16 | public void AddComment(@Field("key") String key, @Field("c_id") String c_id, @Field("t_id") String t_id, @Field("replycontent") String replycontent, @Field("answer_id") String answer_id, Callback response); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/api/TradeCollect.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.api; 2 | 3 | /** 4 | * Created by user on 15-9-12. 5 | */ 6 | public interface TradeCollect { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/bean/ArticleDatas.java: -------------------------------------------------------------------------------- 1 | 2 | package com.daxueoo.shopnc.bean; 3 | 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | 7 | import com.google.gson.annotations.Expose; 8 | import com.google.gson.annotations.SerializedName; 9 | 10 | 11 | /** 12 | * Created by guodont on 15/9/19. 13 | */ 14 | 15 | 16 | public class ArticleDatas { 17 | 18 | @SerializedName("article_list") 19 | @Expose 20 | private List articleList = new ArrayList(); 21 | @SerializedName("article_type_name") 22 | @Expose 23 | private String articleTypeName; 24 | 25 | /** 26 | * 27 | * @return 28 | * The articleList 29 | */ 30 | public List getArticleList() { 31 | return articleList; 32 | } 33 | 34 | /** 35 | * 36 | * @param articleList 37 | * The article_list 38 | */ 39 | public void setArticleList(List articleList) { 40 | this.articleList = articleList; 41 | } 42 | 43 | /** 44 | * 45 | * @return 46 | * The articleTypeName 47 | */ 48 | public String getArticleTypeName() { 49 | return articleTypeName; 50 | } 51 | 52 | /** 53 | * 54 | * @param articleTypeName 55 | * The article_type_name 56 | */ 57 | public void setArticleTypeName(String articleTypeName) { 58 | this.articleTypeName = articleTypeName; 59 | } 60 | 61 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/bean/ArticleListData.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.bean; 2 | 3 | import com.google.gson.annotations.Expose; 4 | import com.google.gson.annotations.SerializedName; 5 | 6 | public class ArticleListData { 7 | 8 | @SerializedName("code") 9 | @Expose 10 | private Integer code; 11 | @SerializedName("datas") 12 | @Expose 13 | private ArticleDatas datas; 14 | 15 | /** 16 | * 17 | * @return 18 | * The code 19 | */ 20 | public Integer getCode() { 21 | return code; 22 | } 23 | 24 | /** 25 | * 26 | * @param code 27 | * The code 28 | */ 29 | public void setCode(Integer code) { 30 | this.code = code; 31 | } 32 | 33 | /** 34 | * 35 | * @return 36 | * The datas 37 | */ 38 | public ArticleDatas getDatas() { 39 | return datas; 40 | } 41 | 42 | /** 43 | * 44 | * @param datas 45 | * The datas 46 | */ 47 | public void setDatas(ArticleDatas datas) { 48 | this.datas = datas; 49 | } 50 | 51 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/bean/CommentListData.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.bean; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import com.google.gson.annotations.Expose; 7 | import com.google.gson.annotations.SerializedName; 8 | 9 | public class CommentListData { 10 | 11 | @Expose 12 | private List replys = new ArrayList(); 13 | @SerializedName("member_list") 14 | @Expose 15 | private List memberList = new ArrayList(); 16 | @SerializedName("theme_nolike") 17 | @Expose 18 | private Integer themeNolike; 19 | 20 | /** 21 | * @return The replys 22 | */ 23 | public List getReplys() { 24 | return replys; 25 | } 26 | 27 | /** 28 | * @param replys The replys 29 | */ 30 | public void setReplys(List replys) { 31 | this.replys = replys; 32 | } 33 | 34 | /** 35 | * @return The memberList 36 | */ 37 | public List getMemberList() { 38 | return memberList; 39 | } 40 | 41 | /** 42 | * @param memberList The member_list 43 | */ 44 | public void setMemberList(List memberList) { 45 | this.memberList = memberList; 46 | } 47 | 48 | /** 49 | * @return The themeNolike 50 | */ 51 | public Integer getThemeNolike() { 52 | return themeNolike; 53 | } 54 | 55 | /** 56 | * @param themeNolike The theme_nolike 57 | */ 58 | public void setThemeNolike(Integer themeNolike) { 59 | this.themeNolike = themeNolike; 60 | } 61 | 62 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/bean/TaskListData.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.bean; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | import com.google.gson.annotations.Expose; 6 | 7 | public class TaskListData { 8 | 9 | @Expose 10 | private List tasks = new ArrayList(); 11 | 12 | /** 13 | * 14 | * @return 15 | * The tasks 16 | */ 17 | public List getTasks() { 18 | return tasks; 19 | } 20 | 21 | /** 22 | * 23 | * @param tasks 24 | * The tasks 25 | */ 26 | public void setTasks(List tasks) { 27 | this.tasks = tasks; 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/bean/ThemeListData.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.bean; 2 | 3 | import java.io.Serializable; 4 | import java.util.ArrayList; 5 | import java.util.List; 6 | 7 | import com.google.gson.annotations.Expose; 8 | 9 | public class ThemeListData implements Serializable { 10 | 11 | @Expose 12 | private List themes = new ArrayList(); 13 | 14 | /** 15 | * @return The themes 16 | */ 17 | public List getThemes() { 18 | return themes; 19 | } 20 | 21 | /** 22 | * @param themes The themes 23 | */ 24 | public void setThemes(List themes) { 25 | this.themes = themes; 26 | } 27 | 28 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/cache/BitmapCache.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.cache; 2 | 3 | import android.graphics.Bitmap; 4 | import android.util.LruCache; 5 | 6 | import com.android.volley.toolbox.ImageLoader; 7 | 8 | /** 9 | * Created by user on 15-7-30. 10 | */ 11 | public class BitmapCache implements ImageLoader.ImageCache { 12 | 13 | private LruCache cache; 14 | 15 | public BitmapCache() { 16 | cache = new LruCache(8 * 1024 * 1024) { 17 | @Override 18 | protected int sizeOf(String key, Bitmap bitmap) { 19 | return bitmap.getRowBytes() * bitmap.getHeight(); 20 | } 21 | }; 22 | } 23 | 24 | @Override 25 | public Bitmap getBitmap(String url) { 26 | return cache.get(url); 27 | } 28 | 29 | @Override 30 | public void putBitmap(String url, Bitmap bitmap) { 31 | cache.put(url, bitmap); 32 | } 33 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/cache/RequesQueuetManager.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.cache; 2 | 3 | import com.android.volley.Request; 4 | import com.android.volley.RequestQueue; 5 | import com.android.volley.toolbox.Volley; 6 | import com.daxueoo.shopnc.DaxueooApplication; 7 | 8 | 9 | /** 10 | * Created by user on 15/8/27. 11 | */ 12 | public class RequesQueuetManager { 13 | public static RequestQueue mRequestQueue = Volley.newRequestQueue(DaxueooApplication.getInstance()); 14 | 15 | public static void addRequest(Request request, Object object){ 16 | if (object != null){ 17 | request.setTag(object); 18 | } 19 | mRequestQueue.add(request); 20 | } 21 | 22 | public static void cancelAll(Object tag) { 23 | mRequestQueue.cancelAll(tag); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/handler/BaseHandler.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.handler; 2 | 3 | import android.os.Handler; 4 | 5 | /** 6 | * Created by user on 15-8-17. 7 | */ 8 | public class BaseHandler extends Handler { 9 | } 10 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/BaseMessage.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | /** 4 | * Created by user on 15-8-17. 5 | */ 6 | public class BaseMessage { 7 | String code; 8 | String message; 9 | } 10 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/CircleMessage.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | import com.daxueoo.shopnc.ui.fragment.CircleFragment; 4 | 5 | /** 6 | * 圈子界面 7 | * Created by user on 15-8-4. 8 | */ 9 | public class CircleMessage extends BaseMessage { 10 | 11 | String id; 12 | String url; 13 | String title; 14 | String content; 15 | String people; 16 | 17 | public CircleMessage(String url, String title, String content, String people) { 18 | this.url = url; 19 | this.title = title; 20 | this.content = content; 21 | this.people = people; 22 | } 23 | 24 | public String getTitle() { 25 | return title; 26 | } 27 | 28 | public void setTitle(String title) { 29 | this.title = title; 30 | } 31 | 32 | public String getUrl() { 33 | return url; 34 | } 35 | 36 | public void setUrl(String url) { 37 | this.url = url; 38 | } 39 | 40 | public String getContent() { 41 | return content; 42 | } 43 | 44 | public void setContent(String content) { 45 | this.content = content; 46 | } 47 | 48 | public String getPeople() { 49 | return people; 50 | } 51 | 52 | public void setPeople(String people) { 53 | this.people = people; 54 | } 55 | 56 | public String getId() { 57 | return id; 58 | } 59 | 60 | public void setId(String id) { 61 | this.id = id; 62 | } 63 | 64 | } 65 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/ExploreMessage.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | import android.app.Activity; 4 | 5 | /** 6 | * Created by guodont on 15/9/13. 7 | */ 8 | public class ExploreMessage extends BaseMessage { 9 | int icon_res; 10 | String explore_name; 11 | Activity intent_activity; 12 | 13 | public ExploreMessage(int icon_res, String explore_name, Activity intent_activity) { 14 | this.icon_res = icon_res; 15 | this.explore_name = explore_name; 16 | this.intent_activity = intent_activity; 17 | } 18 | 19 | public ExploreMessage() { 20 | 21 | } 22 | 23 | public int getIcon_res() { 24 | return icon_res; 25 | } 26 | 27 | public void setIcon_res(int icon_res) { 28 | this.icon_res = icon_res; 29 | } 30 | 31 | public String getExplore_name() { 32 | return explore_name; 33 | } 34 | 35 | public void setExplore_name(String explore_name) { 36 | this.explore_name = explore_name; 37 | } 38 | 39 | public Activity getIntent_activity() { 40 | return intent_activity; 41 | } 42 | 43 | public void setIntent_activity(Activity intent_activity) { 44 | this.intent_activity = intent_activity; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/Notice.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | /** 4 | * Created by guodont on 15/9/19. 5 | */ 6 | public class Notice { 7 | 8 | private int id; 9 | 10 | private String title; 11 | 12 | private String url; 13 | 14 | public Notice(int id ,String title) { 15 | this.title = title; 16 | this.id = id; 17 | } 18 | 19 | public Notice(int id, String title, String url) { 20 | this.id = id; 21 | this.title = title; 22 | this.url = url; 23 | } 24 | 25 | public String getUrl() { 26 | return url; 27 | } 28 | 29 | public void setUrl(String url) { 30 | this.url = url; 31 | } 32 | 33 | public int getId() { 34 | return id; 35 | } 36 | 37 | public void setId(int id) { 38 | this.id = id; 39 | } 40 | 41 | public String getTitle() { 42 | return title; 43 | } 44 | 45 | public void setTitle(String title) { 46 | this.title = title; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/PicUrls.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | import android.text.TextUtils; 4 | 5 | import java.io.Serializable; 6 | 7 | /*sub class*/ 8 | public class PicUrls implements Serializable { 9 | private static final String BMIDDLE_URL = "http://ww3.sinaimg.cn/bmiddle"; 10 | private static final String ORIGINAL_URL = "http://ww3.sinaimg.cn/large"; 11 | 12 | private String thumbnail_pic; 13 | private String bmiddle_pic; 14 | private String original_pic; 15 | 16 | private String getImageId() { 17 | int indexOf = thumbnail_pic.lastIndexOf("/"); 18 | return thumbnail_pic.substring(indexOf); 19 | } 20 | 21 | public String getThumbnail_pic() { 22 | return thumbnail_pic; 23 | } 24 | 25 | public void setThumbnail_pic(String thumbnail_pic) { 26 | this.thumbnail_pic = thumbnail_pic; 27 | } 28 | 29 | public String getBmiddle_pic() { 30 | return TextUtils.isEmpty(bmiddle_pic) ? BMIDDLE_URL + getImageId() : bmiddle_pic; 31 | } 32 | 33 | public void setBmiddle_pic(String bmiddle_pic) { 34 | this.bmiddle_pic = bmiddle_pic; 35 | } 36 | 37 | public String getOriginal_pic() { 38 | return TextUtils.isEmpty(original_pic) ? ORIGINAL_URL + getImageId() : original_pic; 39 | } 40 | 41 | public void setOriginal_pic(String original_pic) { 42 | this.original_pic = original_pic; 43 | } 44 | 45 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/ThemeMessage.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | /** 4 | * Created by user on 15-8-6. 5 | */ 6 | public class ThemeMessage extends BaseMessage { 7 | String author; 8 | String time; 9 | String head_icon_url; 10 | String title; 11 | String summary; 12 | String replies; 13 | 14 | public String getAuthor_id() { 15 | return author_id; 16 | } 17 | 18 | public void setAuthor_id(String author_id) { 19 | this.author_id = author_id; 20 | } 21 | 22 | String author_id; 23 | 24 | public String getAuthor() { 25 | return author; 26 | } 27 | 28 | public void setAuthor(String author) { 29 | this.author = author; 30 | } 31 | 32 | public String getTime() { 33 | return time; 34 | } 35 | 36 | public void setTime(String time) { 37 | this.time = time; 38 | } 39 | 40 | public String getHead_icon_url() { 41 | return head_icon_url; 42 | } 43 | 44 | public void setHead_icon_url(String head_icon_url) { 45 | this.head_icon_url = head_icon_url; 46 | } 47 | 48 | public String getTitle() { 49 | return title; 50 | } 51 | 52 | public void setTitle(String title) { 53 | this.title = title; 54 | } 55 | 56 | public String getSummary() { 57 | return summary; 58 | } 59 | 60 | public void setSummary(String summary) { 61 | this.summary = summary; 62 | } 63 | 64 | public String getReplies() { 65 | return replies; 66 | } 67 | 68 | public void setReplies(String replies) { 69 | this.replies = replies; 70 | } 71 | 72 | 73 | } 74 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/UserMessage.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | import java.io.Serializable; 4 | 5 | /** 6 | * Created by user on 15-8-3. 7 | */ 8 | public class UserMessage extends BaseMessage implements Serializable { 9 | public String getId() { 10 | return id; 11 | } 12 | 13 | public void setId(String id) { 14 | this.id = id; 15 | } 16 | 17 | public String getName() { 18 | return name; 19 | } 20 | 21 | public void setName(String name) { 22 | this.name = name; 23 | } 24 | 25 | public String getAvatar() { 26 | return avatar; 27 | } 28 | 29 | public void setAvatar(String avatar) { 30 | this.avatar = avatar; 31 | } 32 | 33 | String id; 34 | String name; 35 | String avatar; 36 | 37 | } 38 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/model/Visible.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.model; 2 | 3 | import java.io.Serializable; 4 | 5 | public class Visible implements Serializable { 6 | private int type; 7 | private int list_id; 8 | 9 | public int getType() { 10 | return type; 11 | } 12 | 13 | public void setType(int type) { 14 | this.type = type; 15 | } 16 | 17 | public int getList_id() { 18 | return list_id; 19 | } 20 | 21 | public void setList_id(int list_id) { 22 | this.list_id = list_id; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/scan/FinishListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2010 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.daxueoo.shopnc.scan; 18 | 19 | import android.app.Activity; 20 | import android.content.DialogInterface; 21 | 22 | /** 23 | * Simple listener used to exit the app in a few cases. 24 | * 25 | * @author Sean Owen 26 | */ 27 | public final class FinishListener 28 | implements DialogInterface.OnClickListener, DialogInterface.OnCancelListener, Runnable { 29 | 30 | private final Activity activityToFinish; 31 | 32 | public FinishListener(Activity activityToFinish) { 33 | this.activityToFinish = activityToFinish; 34 | } 35 | 36 | public void onCancel(DialogInterface dialogInterface) { 37 | run(); 38 | } 39 | 40 | public void onClick(DialogInterface dialogInterface, int i) { 41 | run(); 42 | } 43 | 44 | public void run() { 45 | activityToFinish.finish(); 46 | } 47 | 48 | } 49 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/scan/ViewfinderResultPointCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2009 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.daxueoo.shopnc.scan; 18 | 19 | import com.google.zxing.ResultPoint; 20 | import com.google.zxing.ResultPointCallback; 21 | 22 | 23 | public final class ViewfinderResultPointCallback implements ResultPointCallback { 24 | 25 | private final ViewfinderView viewfinderView; 26 | 27 | public ViewfinderResultPointCallback(ViewfinderView viewfinderView) { 28 | this.viewfinderView = viewfinderView; 29 | } 30 | 31 | public void foundPossibleResultPoint(ResultPoint point) { 32 | viewfinderView.addPossibleResultPoint(point); 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/service/BaseService.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.service; 2 | 3 | import android.app.Service; 4 | import android.content.Intent; 5 | import android.os.IBinder; 6 | 7 | /** 8 | * Created by user on 15-8-17. 9 | */ 10 | public class BaseService extends Service { 11 | @Override 12 | public IBinder onBind(Intent intent) { 13 | return null; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/AboutActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | import android.view.Menu; 6 | import android.view.MenuItem; 7 | import android.view.View; 8 | 9 | import com.daxueoo.shopnc.R; 10 | 11 | public class AboutActivity extends BaseActivity implements View.OnClickListener{ 12 | 13 | @Override 14 | protected void onCreate(Bundle savedInstanceState) { 15 | super.onCreate(savedInstanceState); 16 | setContentView(R.layout.activity_about); 17 | } 18 | 19 | @Override 20 | public void onClick(View v) { 21 | switch (v.getId()){ 22 | case R.id.titlebar_iv_left: 23 | this.finish(); 24 | break; 25 | 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/BaseFragmentActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.os.Bundle; 4 | import android.support.v4.app.FragmentActivity; 5 | import android.view.MotionEvent; 6 | 7 | import com.bugtags.library.Bugtags; 8 | 9 | /** 10 | * Created by guodont on 15/9/22. 11 | */ 12 | public class BaseFragmentActivity extends FragmentActivity { 13 | @Override 14 | protected void onCreate(Bundle savedInstanceState) { 15 | super.onCreate(savedInstanceState); 16 | } 17 | 18 | @Override 19 | protected void onResume() { 20 | super.onResume(); 21 | //注:回调 1 22 | Bugtags.onResume(this); 23 | } 24 | 25 | @Override 26 | protected void onPause() { 27 | super.onPause(); 28 | //注:回调 2 29 | Bugtags.onPause(this); 30 | } 31 | 32 | @Override 33 | public boolean dispatchTouchEvent(MotionEvent event) { 34 | //注:回调 3 35 | Bugtags.onDispatchTouchEvent(this, event); 36 | return super.dispatchTouchEvent(event); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/CircleProfileActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.support.v4.app.FragmentActivity; 4 | import android.support.v4.app.FragmentTransaction; 5 | import android.os.Bundle; 6 | 7 | import com.daxueoo.shopnc.R; 8 | import com.daxueoo.shopnc.ui.fragment.CircleProfileFragment; 9 | 10 | public class CircleProfileActivity extends BaseFragmentActivity { 11 | 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) { 14 | super.onCreate(savedInstanceState); 15 | setContentView(R.layout.activity_fragment); 16 | initView(); 17 | } 18 | 19 | private void initView() { 20 | CircleProfileFragment fragment = new CircleProfileFragment(); 21 | FragmentTransaction trans = getSupportFragmentManager().beginTransaction(); 22 | trans.replace(R.id.container, fragment); 23 | trans.commitAllowingStateLoss(); 24 | } 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/CustomActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.app.Activity; 4 | import android.support.v4.app.FragmentActivity; 5 | import android.support.v7.app.AppCompatActivity; 6 | import android.os.Bundle; 7 | import android.view.Menu; 8 | import android.view.MenuItem; 9 | import android.view.View; 10 | 11 | import com.daxueoo.shopnc.R; 12 | import com.daxueoo.shopnc.utils.TitleBuilder; 13 | 14 | public class CustomActivity extends BaseFragmentActivity implements View.OnClickListener { 15 | 16 | @Override 17 | protected void onCreate(Bundle savedInstanceState) { 18 | super.onCreate(savedInstanceState); 19 | setContentView(R.layout.activity_custom); 20 | new TitleBuilder(this).setTitleText("在首页显示").setLeftImage(R.drawable.navigationbar_back_sel).setLeftOnClickListener(this); 21 | 22 | } 23 | 24 | @Override 25 | public void onClick(View v) { 26 | switch (v.getId()) { 27 | case R.id.titlebar_iv_left: 28 | this.finish(); 29 | break; 30 | 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/EmojiActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | /** 4 | * Created by user on 15-8-24. 5 | */ 6 | public class EmojiActivity { 7 | } 8 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/JoinCircleActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | import android.view.Menu; 6 | import android.view.MenuItem; 7 | 8 | import com.daxueoo.shopnc.R; 9 | 10 | public class JoinCircleActivity extends BaseActivity { 11 | 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) { 14 | super.onCreate(savedInstanceState); 15 | setContentView(R.layout.activity_join_circle); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/NoticeListActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.content.Intent; 4 | import android.os.Bundle; 5 | import android.support.v4.app.FragmentTransaction; 6 | import android.view.View; 7 | 8 | import com.daxueoo.shopnc.R; 9 | import com.daxueoo.shopnc.ui.fragment.NoticeListFragment; 10 | import com.daxueoo.shopnc.ui.fragment.UserFollowFragment; 11 | import com.daxueoo.shopnc.utils.TitleBuilder; 12 | 13 | /** 14 | * Created by guodont on 15/9/22. 15 | */ 16 | public class NoticeListActivity extends BaseFragmentActivity implements View.OnClickListener { 17 | 18 | @Override 19 | protected void onCreate(Bundle savedInstanceState) { 20 | super.onCreate(savedInstanceState); 21 | setContentView(R.layout.activity_fragment); 22 | 23 | initView(); 24 | } 25 | 26 | /** 27 | * 初始化视图 28 | */ 29 | private void initView() { 30 | new TitleBuilder(this).setTitleText("公告资讯").setLeftImage(R.drawable.navigationbar_back_sel).setLeftOnClickListener(this); 31 | 32 | NoticeListFragment fragment = new NoticeListFragment(); 33 | FragmentTransaction trans = getSupportFragmentManager().beginTransaction(); 34 | trans.replace(R.id.container, fragment); 35 | trans.commitAllowingStateLoss(); 36 | } 37 | 38 | @Override 39 | public void onClick(View v) { 40 | switch (v.getId()){ 41 | case R.id.titlebar_iv_left: 42 | this.finish(); 43 | break; 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/SettingActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.view.View; 6 | import android.widget.TextView; 7 | 8 | import com.daxueoo.shopnc.R; 9 | import com.daxueoo.shopnc.utils.TitleBuilder; 10 | 11 | /** 12 | * Created by user on 15-8-2. 13 | */ 14 | public class SettingActivity extends BaseActivity implements View.OnClickListener{ 15 | private TextView tv_title; 16 | 17 | @Override 18 | protected void onCreate(Bundle savedInstanceState) { 19 | super.onCreate(savedInstanceState); 20 | setContentView(R.layout.activity_setting); 21 | new TitleBuilder(this).setTitleText("设置").setLeftImage(R.drawable.navigationbar_back_sel).setLeftOnClickListener(this); 22 | 23 | } 24 | 25 | @Override 26 | public void onClick(View v) { 27 | switch (v.getId()){ 28 | case R.id.titlebar_iv_left: 29 | this.finish(); 30 | break; 31 | 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/activity/TradeActivity.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.activity; 2 | 3 | import android.os.Bundle; 4 | import android.support.v4.app.FragmentActivity; 5 | import android.support.v4.app.FragmentTransaction; 6 | import android.view.View; 7 | 8 | import com.daxueoo.shopnc.R; 9 | import com.daxueoo.shopnc.ui.fragment.TradeListFragment; 10 | import com.daxueoo.shopnc.utils.TitleBuilder; 11 | 12 | /** 13 | * Created by guodont on 15/9/10. 14 | */ 15 | public class TradeActivity extends BaseFragmentActivity implements View.OnClickListener { 16 | 17 | 18 | @Override 19 | protected void onCreate(Bundle savedInstanceState) { 20 | super.onCreate(savedInstanceState); 21 | setContentView(R.layout.activity_fragment); 22 | initView(); 23 | } 24 | 25 | /** 26 | * 初始化视图 27 | */ 28 | private void initView() { 29 | new TitleBuilder(this).setTitleText("交易列表") 30 | .setLeftImage(R.drawable.navigationbar_back_sel).setLeftOnClickListener(this); 31 | TradeListFragment fragment = new TradeListFragment(); 32 | FragmentTransaction trans = getSupportFragmentManager().beginTransaction(); 33 | trans.replace(R.id.container, fragment); 34 | trans.commitAllowingStateLoss(); 35 | } 36 | 37 | @Override 38 | public void onClick(View v) { 39 | switch (v.getId()){ 40 | case R.id.titlebar_iv_left: 41 | this.finish(); 42 | break; 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/ui/fragment/CommonDetailFragment.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.ui.fragment; 2 | 3 | import android.support.v4.app.Fragment; 4 | 5 | /** 6 | * Created by user on 15-8-20. 7 | */ 8 | public class CommonDetailFragment extends Fragment { 9 | } 10 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/utils/GestureUtils.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.utils; 2 | 3 | import android.content.Context; 4 | import android.util.DisplayMetrics; 5 | import android.view.WindowManager; 6 | 7 | /** 8 | * Created by guodont on 15/9/20. 9 | */ 10 | public class GestureUtils { 11 | 12 | 13 | //获取屏幕的大小 14 | public static Screen getScreenPix(Context context) { 15 | DisplayMetrics dm = new DisplayMetrics(); 16 | WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE); 17 | windowManager.getDefaultDisplay().getMetrics(dm); 18 | return new Screen(dm.widthPixels, dm.heightPixels); 19 | } 20 | 21 | public static class Screen { 22 | 23 | public int widthPixels; 24 | public int heightPixels; 25 | 26 | public Screen() { 27 | 28 | } 29 | 30 | public Screen(int widthPixels, int heightPixels) { 31 | this.widthPixels = widthPixels; 32 | this.heightPixels = heightPixels; 33 | } 34 | 35 | @Override 36 | public String toString() { 37 | return "(" + widthPixels + "," + heightPixels + ")"; 38 | } 39 | 40 | } 41 | 42 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/utils/ImageUtils.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.utils; 2 | 3 | import android.util.Log; 4 | 5 | import java.util.regex.Matcher; 6 | import java.util.regex.Pattern; 7 | 8 | /** 9 | * Created by guodont on 15-8-30. 10 | */ 11 | public class ImageUtils { 12 | 13 | /** 14 | * 获取Content中的第一个Img url 15 | * @param content 16 | * @return 17 | */ 18 | public static String getContentFirstImgUrl(String content){ 19 | String firstImg = null; 20 | String pattern1 = "[\\[IMG\\]][a-zA-z]+://[^\\s]*[\\[IMG\\]]"; 21 | String pattern2 = "[^\\[IMG\\]][a-zA-z]+://[^\\s\\[IMG\\]]*"; 22 | 23 | Pattern p = Pattern.compile(pattern1); 24 | Matcher m = p.matcher(content); 25 | 26 | if(m.find()){ 27 | Pattern p2 = Pattern.compile(pattern2); 28 | Log.e("pattern", m.group()); 29 | Matcher m2 = p2.matcher(m.group()); 30 | if (m2.find()){ 31 | Log.e("pattern", m2.group()); 32 | firstImg = m2.group(); 33 | }else{ 34 | firstImg = null; 35 | } 36 | 37 | } else { 38 | firstImg = null; 39 | } 40 | 41 | return firstImg; 42 | } 43 | 44 | /** 45 | * 替换内容中匹配的IMG标签为[图片],以在话题描述中显示 46 | * @param content 47 | * @return 48 | */ 49 | public static String HideImageTag(String content) { 50 | 51 | String pattern = "[\\[IMG\\]][a-zA-z]+://[^\\s]*[\\[IMG\\]]"; 52 | 53 | Pattern p = Pattern.compile(pattern); 54 | Matcher m = p.matcher(content); 55 | 56 | Log.e("replace",m.replaceAll("[图片]")); 57 | return m.replaceAll("[图片]"); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/utils/TextUtils.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.utils; 2 | 3 | import android.content.Context; 4 | import android.text.format.DateUtils; 5 | 6 | import com.daxueoo.shopnc.R; 7 | 8 | public class TextUtils { 9 | 10 | public static CharSequence getRelativeTimeDisplayString(Context context, long referenceTime) { 11 | long now = System.currentTimeMillis(); 12 | long difference = now - referenceTime; 13 | return (difference >= 0 && difference<= DateUtils.MINUTE_IN_MILLIS) ? 14 | context.getResources().getString(R.string.just_now): 15 | DateUtils.getRelativeTimeSpanString( 16 | referenceTime, 17 | now, 18 | DateUtils.MINUTE_IN_MILLIS, 19 | DateUtils.FORMAT_ABBREV_RELATIVE); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/utils/ToastUtils.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.utils; 2 | 3 | import android.content.Context; 4 | import android.widget.Toast; 5 | 6 | public class ToastUtils { 7 | 8 | private static Toast mToast; 9 | 10 | /** 11 | * 显示Toast 12 | */ 13 | public static void showToast(Context context, CharSequence text, int duration) { 14 | if(mToast == null) { 15 | mToast = Toast.makeText(context, text, duration); 16 | } else { 17 | mToast.setText(text); 18 | mToast.setDuration(duration); 19 | } 20 | mToast.show(); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/widgets/ForScrollViewListView.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.widgets; 2 | 3 | import android.content.Context; 4 | import android.util.AttributeSet; 5 | import android.widget.ListView; 6 | 7 | public class ForScrollViewListView extends ListView { 8 | public ForScrollViewListView(Context context) { 9 | super(context); 10 | } 11 | 12 | public ForScrollViewListView(Context context, AttributeSet attrs) { 13 | super(context, attrs); 14 | } 15 | 16 | public ForScrollViewListView(Context context, AttributeSet attrs, int defStyle) { 17 | super(context, attrs, defStyle); 18 | } 19 | 20 | @Override 21 | /** 22 | * 重写该方法,达到使ListView适应ScrollView的效果 23 | */ 24 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 25 | int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, 26 | MeasureSpec.AT_MOST); 27 | super.onMeasure(widthMeasureSpec, expandSpec); 28 | } 29 | } -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/widgets/SelectorImageView.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.widgets; 2 | 3 | import android.content.Context; 4 | import android.graphics.Canvas; 5 | import android.graphics.drawable.Drawable; 6 | import android.util.AttributeSet; 7 | import android.widget.ImageView; 8 | 9 | import com.daxueoo.shopnc.R; 10 | 11 | public class SelectorImageView extends ImageView{ 12 | public SelectorImageView(Context context) { 13 | super(context); 14 | init(); 15 | } 16 | 17 | public SelectorImageView(Context context, AttributeSet attrs) { 18 | super(context, attrs); 19 | init(); 20 | } 21 | 22 | public SelectorImageView(Context context, AttributeSet attrs, int defStyle) { 23 | super(context, attrs, defStyle); 24 | init(); 25 | } 26 | 27 | private Drawable mForegroundSelector; 28 | 29 | private void init(){ 30 | mForegroundSelector = getResources().getDrawable(R.drawable.holo_selector); 31 | } 32 | 33 | @Override 34 | protected void drawableStateChanged() { 35 | super.drawableStateChanged(); 36 | mForegroundSelector.setState(getDrawableState()); 37 | invalidate(); 38 | } 39 | 40 | @Override 41 | protected void onSizeChanged(int w, int h, int oldw, int oldh) { 42 | super.onSizeChanged(w, h, oldw, oldh); 43 | mForegroundSelector.setBounds(0, 0, w, h); 44 | } 45 | 46 | @Override 47 | protected void onDraw(Canvas canvas) { 48 | super.onDraw(canvas); 49 | mForegroundSelector.draw(canvas); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Src/app/src/main/java/com/daxueoo/shopnc/widgets/WrapHeightGridView.java: -------------------------------------------------------------------------------- 1 | package com.daxueoo.shopnc.widgets; 2 | 3 | import android.content.Context; 4 | import android.util.AttributeSet; 5 | import android.widget.GridView; 6 | 7 | public class WrapHeightGridView extends GridView { 8 | 9 | public WrapHeightGridView(Context context, AttributeSet attrs, int defStyle) { 10 | super(context, attrs, defStyle); 11 | } 12 | 13 | public WrapHeightGridView(Context context, AttributeSet attrs) { 14 | super(context, attrs); 15 | } 16 | 17 | public WrapHeightGridView(Context context) { 18 | super(context); 19 | } 20 | 21 | @Override 22 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 23 | 24 | int heightSpec = MeasureSpec.makeMeasureSpec( 25 | Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); 26 | 27 | super.onMeasure(widthMeasureSpec, heightSpec); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Src/app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /Src/app/src/main/res/anim/close.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Src/app/src/main/res/anim/show.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /Src/app/src/main/res/anim/zoom_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 16 | 20 | 21 | 23 | 24 | 28 | 29 | 37 | 38 | -------------------------------------------------------------------------------- /Src/app/src/main/res/anim/zoom_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 27 | 28 | 31 | 32 | 40 | 41 | 45 | 46 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/button_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/button_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/button_unpress.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/cancel_btn_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/cancel_btn_bg_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/cancel_btn_bg_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/cancel_btn_bg_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/dark_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/dark_dot.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/guide_350_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/guide_350_01.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/guide_350_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/guide_350_02.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/guide_350_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/guide_350_03.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/guide_350_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/guide_350_04.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/guide_350_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/guide_350_05.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-hdpi/white_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-hdpi/white_dot.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-ldpi/button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-ldpi/button_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-ldpi/button_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-ldpi/button_unpress.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-mdpi/button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-mdpi/button_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-mdpi/button_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-mdpi/button_unpress.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/.DS_Store -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/bg_node_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/bg_node_normal.9.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/bg_node_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/bg_node_pressed.9.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_aini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_aini.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_aoteman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_aoteman.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_baibai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_baibai.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_beishang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_beishang.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_bishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_bishi.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_bizui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_bizui.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_chanzui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_chanzui.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_chijing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_chijing.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_dahaqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_dahaqi.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_dalian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_dalian.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_ding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_ding.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_doge.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_fangdumianju.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_fangdumianju.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_feizao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_feizao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_ganmao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_ganmao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_guzhang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_guzhang.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_haha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_haha.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_haixiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_haixiu.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_han.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_han.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_hehe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_hehe.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_heixian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_heixian.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_heng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_heng.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_huaxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_huaxin.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_jiyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_jiyan.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_keai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_keai.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_kelian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_kelian.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_ku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_ku.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_kun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_kun.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_landelini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_landelini.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_lang.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_lei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_lei.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_miao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_miao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_nanhaier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_nanhaier.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_nu.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_numa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_numa.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_nvhaier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_nvhaier.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_qian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_qian.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_qinqin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_qinqin.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_shayan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_shayan.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_shengbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_shengbing.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_shenshou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_shenshou.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_shiwang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_shiwang.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_shuai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_shuai.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_shuijiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_shuijiao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_sikao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_sikao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_taikaixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_taikaixin.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_touxiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_touxiao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_travel.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_tu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_tu.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_tuzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_tuzi.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_wabishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_wabishi.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_weiqu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_weiqu.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_xiaoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_xiaoku.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_xiongmao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_xiongmao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_xixi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_xixi.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_xu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_xu.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_yinxian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_yinxian.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_yiwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_yiwen.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_youhengheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_youhengheng.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_yun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_yun.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_zhuakuang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_zhuakuang.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_zhutou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_zhutou.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_zuiyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_zuiyou.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/d_zuohengheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/d_zuohengheng.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/ddd_106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/ddd_106.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/default_goods_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/default_goods_img.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/default_group_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/default_group_logo.gif -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/divide_10_top_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/divide_10_top_bottom.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/divide_15_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/divide_15_bottom.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/divide_15_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/divide_15_top.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/divide_15_top_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/divide_15_top_bottom.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/home_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/home_message.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/home_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/home_more.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/home_serve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/home_serve.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/home_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/home_task.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/ic_img_line_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/ic_img_line_v.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/ic_img_profile_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/ic_img_profile_bg.jpg -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/ic_img_user_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/ic_img_user_default.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/ic_list_right_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/ic_list_right_arr.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/ic_my_trader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/ic_my_trader.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_add_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_add_img.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_album.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_checkout_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_checkout_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_circle_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_circle_create.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_default_avatar.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_default_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_default_explore.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_defautl_avatar_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_defautl_avatar_white.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_emoticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_emoticon.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_message_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_message_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_notice.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_order_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_order_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_qa_dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_qa_dr.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_qa_zj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_qa_zj.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_task_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_task_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_explore_trade_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_explore_trade_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_flag.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_home_notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_home_notice.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_home_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_home_theme.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_img_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_img_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_like.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_likes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_likes.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_menu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_menu_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_menu_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_menu_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_no_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_no_like.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_qa_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_qa_edit.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_question_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_question_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_replies.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_article_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_article_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_article_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_article_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_goods_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_goods_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_goods_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_goods_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_lab_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_lab_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_lab_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_lab_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_shebei_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_shebei_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_scan_shebei_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_scan_shebei_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_search_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_search_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_send.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_shopping_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_shopping_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_hot_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_hot_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_hot_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_hot_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_new_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_new_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_new_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_new_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_price_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_price_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_price_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_price_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_sell_count_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_sell_count_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_sort_sell_count_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_sort_sell_count_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_star_0.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_star_1.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_star_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_star_2.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_star_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_star_3.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_star_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_star_4.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_star_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_star_5.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_tab_explor_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_tab_explor_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_tab_explor_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_tab_explor_press.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_theme_to_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_theme_to_top.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_theme_to_top_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_theme_to_top_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_view.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/icon_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/icon_views.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/navigationbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/navigationbar_back.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/navigationbar_back_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/navigationbar_back_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/push_checkbox_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/push_checkbox_off.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/push_checkbox_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/push_checkbox_on.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/setting_button_esc.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/setting_button_esc.9.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/setting_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/setting_icon_normal.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/setting_icon_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/setting_icon_press.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_add_icon.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_add_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_add_icon_pressed.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_circle.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_circle_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_circle_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_discover.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_discover_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_discover_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_home.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_home_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_home_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_mall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_mall.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_mall_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_mall_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_message_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_message_center.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_message_center_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_message_center_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_profile.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_profile_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_profile_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_res.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_res_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_res_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_scan.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_scan_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_scan_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_trade.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tabbar_trade_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tabbar_trade_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/task_icon_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/task_icon_press.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/test_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/test_circle.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/tilebar_right_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/tilebar_right_btn.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_comment.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_comment_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_comment_disable.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_like.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_like_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_like_disable.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_retweet.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_retweet_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_retweet_disable.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/timeline_icon_unlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/timeline_icon_unlike.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/title_bar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/title_bar_back.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/title_bar_back_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/title_bar_back_highlighted.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_btn_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_btn_goods.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_btn_posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_btn_posts.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_btn_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_btn_send.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_btn_trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_btn_trade.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_fav_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_fav_goods.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_fav_trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_fav_trade.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_home_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_home_arrow.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_home_maopao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_home_maopao.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_home_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_home_project.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/user_home_topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/user_home_topic.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable-xhdpi/welcome_android_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable-xhdpi/welcome_android_slogan.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_btn_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_btn_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_edittext.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_edittext_create.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_edittext_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_edittext_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_lgray2dgray_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_node.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_retweet_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_tran2gray_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_tv_task_date_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_tv_task_date_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_tv_title_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/bg_white2gray_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/cancel_scan_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/correct_oran.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/correct_oran_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/correct_oran_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/dot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/holo_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/ic_my_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable/ic_my_order.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_add.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_mall.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_scan.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_selfinfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_square.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/icon_trade.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/item_border.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 10 | 15 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/item_border_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 10 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/layerlist_tab_indicator_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/list_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigDream/shopnc-app/72afccde8544159b0c5e2cd575e005cb94c739ab/Src/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/navigationbar_back_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/push_checkbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/resource_list_selecter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 14 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/shadowright.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/txtcolor_gray2green_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/txtcolor_oran2alpha_sel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Src/app/src/main/res/drawable/whats_new_start_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_circle_profile.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_detail.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 14 | 15 | 20 | 21 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_image_preview.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/activity_web_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/divide_13_top.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/divide_15_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/divide_15_top.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/divide_15_top_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/divide_1_12.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/drawer_list_item.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_mall.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 15 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_notice_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | 26 | 27 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_planet.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_trade.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | 17 | 18 | 19 | 28 | 29 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_user.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_user_follow.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | 26 | 27 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/fragment_user_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/guide_five.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 26 | 27 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/guide_four.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/guide_one.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/guide_three.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/guide_two.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/include_avatar.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 21 | 22 | 26 | 27 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/include_avatar2.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 21 | 22 | 28 | 29 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Src/app/src/main/res/layout/include_circle_op_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |