实例介绍
直接创建2个工程,把他们导入即可; 百分百源代码,已调试通过
【实例截图】
【核心代码】
4744302543287826159.rar
└── 今日头条源代码20150107
├── library_SlidingMenu
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── classes
│ │ │ └── com
│ │ │ └── jeremyfeinstein
│ │ │ └── slidingmenu
│ │ │ └── lib
│ │ │ ├── app
│ │ │ │ ├── SlidingActivityBase.class
│ │ │ │ ├── SlidingActivity.class
│ │ │ │ ├── SlidingActivityHelper$1.class
│ │ │ │ ├── SlidingActivityHelper.class
│ │ │ │ ├── SlidingFragmentActivity.class
│ │ │ │ ├── SlidingListActivity.class
│ │ │ │ └── SlidingPreferenceActivity.class
│ │ │ ├── BuildConfig.class
│ │ │ ├── CanvasTransformerBuilder$1.class
│ │ │ ├── CanvasTransformerBuilder$2.class
│ │ │ ├── CanvasTransformerBuilder$3.class
│ │ │ ├── CanvasTransformerBuilder$4.class
│ │ │ ├── CanvasTransformerBuilder$5.class
│ │ │ ├── CanvasTransformerBuilder$6.class
│ │ │ ├── CanvasTransformerBuilder.class
│ │ │ ├── CustomViewAbove$1.class
│ │ │ ├── CustomViewAbove$2.class
│ │ │ ├── CustomViewAbove$OnPageChangeListener.class
│ │ │ ├── CustomViewAbove$SimpleOnPageChangeListener.class
│ │ │ ├── CustomViewAbove.class
│ │ │ ├── CustomViewBehind.class
│ │ │ ├── MenuInterface.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$styleable.class
│ │ │ ├── R.class
│ │ │ ├── SlidingMenu$1.class
│ │ │ ├── SlidingMenu$2.class
│ │ │ ├── SlidingMenu$CanvasTransformer.class
│ │ │ ├── SlidingMenu$OnClosedListener.class
│ │ │ ├── SlidingMenu$OnCloseListener.class
│ │ │ ├── SlidingMenu$OnOpenedListener.class
│ │ │ ├── SlidingMenu$OnOpenListener.class
│ │ │ ├── SlidingMenu$SavedState$1.class
│ │ │ ├── SlidingMenu$SavedState.class
│ │ │ └── SlidingMenu.class
│ │ ├── library_slidingmenu.jar
│ │ ├── res
│ │ └── R.txt
│ ├── gen
│ │ └── com
│ │ └── jeremyfeinstein
│ │ └── slidingmenu
│ │ └── lib
│ │ ├── BuildConfig.java
│ │ └── R.java
│ ├── library.iml
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── LICENSE.txt
│ ├── pom.xml
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ ├── drawable-ldpi
│ │ ├── drawable-mdpi
│ │ ├── drawable-xhdpi
│ │ ├── layout
│ │ │ └── slidingmenumain.xml
│ │ └── values
│ │ ├── attrs.xml
│ │ └── ids.xml
│ └── src
│ └── com
│ └── jeremyfeinstein
│ └── slidingmenu
│ └── lib
│ ├── app
│ │ ├── SlidingActivityBase.java
│ │ ├── SlidingActivityHelper.java
│ │ ├── SlidingActivity.java
│ │ ├── SlidingFragmentActivity.java
│ │ ├── SlidingListActivity.java
│ │ └── SlidingPreferenceActivity.java
│ ├── CanvasTransformerBuilder.java
│ ├── CustomViewAbove.java
│ ├── CustomViewBehind.java
│ ├── MenuInterface.java
│ └── SlidingMenu.java
└── TopNews
├── AndroidManifest.xml
├── assets
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── com
│ │ ├── jeremyfeinstein
│ │ │ └── slidingmenu
│ │ │ └── lib
│ │ │ ├── R$attr.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$styleable.class
│ │ │ └── R.class
│ │ └── topnews
│ │ ├── adapter
│ │ │ ├── CityAdapter$ViewHolder.class
│ │ │ ├── CityAdapter.class
│ │ │ ├── DragAdapter.class
│ │ │ ├── ImagePagerAdapter$1.class
│ │ │ ├── ImagePagerAdapter.class
│ │ │ ├── NewsAdapter$1.class
│ │ │ ├── NewsAdapter$popAction.class
│ │ │ ├── NewsAdapter$ViewHolder.class
│ │ │ ├── NewsAdapter.class
│ │ │ ├── NewsFragmentPagerAdapter.class
│ │ │ └── OtherAdapter.class
│ │ ├── app
│ │ │ └── AppApplication.class
│ │ ├── base
│ │ │ └── BaseActivity.class
│ │ ├── bean
│ │ │ ├── ChannelItem.class
│ │ │ ├── ChannelManage.class
│ │ │ ├── CityEntity.class
│ │ │ └── NewsEntity.class
│ │ ├── BuildConfig.class
│ │ ├── ChannelActivity$1.class
│ │ ├── ChannelActivity$2.class
│ │ ├── ChannelActivity$3.class
│ │ ├── ChannelActivity.class
│ │ ├── CityListActivity$1.class
│ │ ├── CityListActivity.class
│ │ ├── dao
│ │ │ ├── ChannelDao.class
│ │ │ └── ChannelDaoInface.class
│ │ ├── db
│ │ │ ├── DBUtil.class
│ │ │ └── SQLHelper.class
│ │ ├── DetailsActivity$JavascriptInterface.class
│ │ ├── DetailsActivity$MyAsnycTask.class
│ │ ├── DetailsActivity$MyWebChromeClient.class
│ │ ├── DetailsActivity$MyWebViewClient.class
│ │ ├── DetailsActivity.class
│ │ ├── fragment
│ │ │ ├── NewsFragment$1$1.class
│ │ │ ├── NewsFragment$1.class
│ │ │ ├── NewsFragment$2.class
│ │ │ ├── NewsFragment$3.class
│ │ │ ├── NewsFragment$4$1.class
│ │ │ ├── NewsFragment$4.class
│ │ │ └── NewsFragment.class
│ │ ├── ImageShowActivity$1.class
│ │ ├── ImageShowActivity.class
│ │ ├── listener
│ │ │ └── BackGestureListener.class
│ │ ├── MainActivity$1.class
│ │ ├── MainActivity$2.class
│ │ ├── MainActivity$3.class
│ │ ├── MainActivity$4.class
│ │ ├── MainActivity$5.class
│ │ ├── MainActivity.class
│ │ ├── R$anim.class
│ │ ├── R$attr.class
│ │ ├── R$color.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$integer.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$string.class
│ │ ├── R$styleable.class
│ │ ├── R$style.class
│ │ ├── R.class
│ │ ├── service
│ │ │ └── NewsDetailsService.class
│ │ ├── SettingsActivity.class
│ │ ├── tool
│ │ │ ├── BaseTools.class
│ │ │ ├── Constants.class
│ │ │ ├── DataTools.class
│ │ │ ├── DateTools.class
│ │ │ └── Options.class
│ │ ├── view
│ │ │ ├── ColumnHorizontalScrollView.class
│ │ │ ├── DragGrid$1.class
│ │ │ ├── DragGrid$2.class
│ │ │ ├── DragGrid.class
│ │ │ ├── DrawerView$1.class
│ │ │ ├── DrawerView$2.class
│ │ │ ├── DrawerView$3.class
│ │ │ ├── DrawerView.class
│ │ │ ├── HeadListView$HeaderAdapter.class
│ │ │ ├── HeadListView.class
│ │ │ ├── imageshow
│ │ │ │ ├── EclairMotionEvent.class
│ │ │ │ ├── ImageShowViewPager.class
│ │ │ │ ├── TouchImageView$1.class
│ │ │ │ ├── TouchImageView$ScaleListener.class
│ │ │ │ ├── TouchImageView$Task.class
│ │ │ │ ├── TouchImageView$TimeHandler.class
│ │ │ │ ├── TouchImageView.class
│ │ │ │ └── WrapMotionEvent.class
│ │ │ ├── OtherGridView.class
│ │ │ ├── SwitchButton.class
│ │ │ ├── ToastDialog.class
│ │ │ └── TopToastView.class
│ │ ├── Welcome$1.class
│ │ └── Welcome.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-9e135b20fda16214672883b07174925f.jar
│ │ ├── jsoup-1.7.2-0e12593252e80c852ed2a484884287ff.jar
│ │ ├── library_slidingmenu-09ab182d7a9e9b4d13ef6f7e00334667.jar
│ │ └── universal-image-loader-1.9.2-SNAPSHOT-with-sources-0cfde6df1a99eab017efb388723ead8e.jar
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-nodpi
│ │ │ ├── icon.png
│ │ │ ├── top_popu_right_up.9.png
│ │ │ └── transparent.9.png
│ │ ├── drawable-xhdpi
│ │ │ ├── account_icon_kaixin.png
│ │ │ ├── account_icon_renren.png
│ │ │ ├── arrow_channel.png
│ │ │ ├── arrow_drawer.png
│ │ │ ├── arrow_listpage.png
│ │ │ ├── big_loadpic_empty_listpage.png
│ │ │ ├── btn_back_detail_normal.png
│ │ │ ├── btn_back_detail_pressed.png
│ │ │ ├── btn_back_normal.png
│ │ │ ├── btn_back_pressed.png
│ │ │ ├── btn_category_normal_night.png
│ │ │ ├── btn_category_normal.png
│ │ │ ├── btn_category_pressed.png
│ │ │ ├── btn_common_disabled.9.png
│ │ │ ├── btn_common_normal.9.png
│ │ │ ├── btn_common_pressed.9.png
│ │ │ ├── btn_kaixin_normal.png
│ │ │ ├── btn_kaixin_pressed.png
│ │ │ ├── btn_qq_normal.png
│ │ │ ├── btn_qq_pressed.png
│ │ │ ├── btn_renren_normal.png
│ │ │ ├── btn_renren_pressed.png
│ │ │ ├── btn_sina_normal.png
│ │ │ ├── btn_sina_pressed.png
│ │ │ ├── btn_tencent_normal.png
│ │ │ ├── btn_tencent_pressed.png
│ │ │ ├── channel_glide_night.png
│ │ │ ├── channel_glide.png
│ │ │ ├── channel_glide_press_night.png
│ │ │ ├── channel_glide_press.png
│ │ │ ├── channel_leftblock_night.png
│ │ │ ├── channel_leftblock.png
│ │ │ ├── channel_new.png
│ │ │ ├── channel_rightblock_night.png
│ │ │ ├── channel_rightblock.png
│ │ │ ├── default_round_head.png
│ │ │ ├── detail_loading.png
│ │ │ ├── dynamic_refresh_normal.png
│ │ │ ├── dynamic_refresh_pressed.png
│ │ │ ├── ic_action_favor_normal.png
│ │ │ ├── ic_action_favor_on_normal.png
│ │ │ ├── ic_action_favor_on_pressed.png
│ │ │ ├── ic_action_favor_pressed.png
│ │ │ ├── ic_action_more_normal.png
│ │ │ ├── ic_action_more_pressed.png
│ │ │ ├── ic_action_next_disabled.png
│ │ │ ├── ic_action_next_normal.png
│ │ │ ├── ic_action_next_pressed.png
│ │ │ ├── ic_action_previous_disabled.png
│ │ │ ├── ic_action_previous_normal.png
│ │ │ ├── ic_action_previous_pressed.png
│ │ │ ├── ic_action_report_normal.png
│ │ │ ├── ic_action_report_pressed.png
│ │ │ ├── ic_action_repost_normal.png
│ │ │ ├── ic_action_repost_pressed.png
│ │ │ ├── ic_action_share_normal.png
│ │ │ ├── ic_action_share_pressed.png
│ │ │ ├── ic_action_write_normal.png
│ │ │ ├── ic_action_write_pressed.png
│ │ │ ├── ic_city_native.png
│ │ │ ├── ic_download_normal.png
│ │ │ ├── ic_download_pressed.png
│ │ │ ├── ic_drawer_appstore_normal.png
│ │ │ ├── ic_drawer_appstore_pressed.png
│ │ │ ├── ic_drawer_favorite_normal.png
│ │ │ ├── ic_drawer_favorite_pressed.png
│ │ │ ├── ic_drawer_feedback_normal.png
│ │ │ ├── ic_drawer_feedback_pressed.png
│ │ │ ├── ic_drawer_message_normal.png
│ │ │ ├── ic_drawer_message_pressed.png
│ │ │ ├── ic_drawer_offline_normal.png
│ │ │ ├── ic_drawer_offline_pressed.png
│ │ │ ├── ic_drawer_qzone.png
│ │ │ ├── ic_drawer_search_normal.png
│ │ │ ├── ic_drawer_search_pressed.png
│ │ │ ├── ic_drawer_setting_normal.png
│ │ │ ├── ic_drawer_setting_pressed.png
│ │ │ ├── ic_drawer_tencent.png
│ │ │ ├── ic_drawer_weibo.png
│ │ │ ├── ic_full_image_failed.png
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_mark_exclusive_night.png
│ │ │ ├── ic_mark_exclusive.png
│ │ │ ├── ic_mark_favor_night.png
│ │ │ ├── ic_mark_favor.png
│ │ │ ├── ic_mark_first_night.png
│ │ │ ├── ic_mark_first.png
│ │ │ ├── ic_mark_hot_night.png
│ │ │ ├── ic_mark_hot.png
│ │ │ ├── ic_mark_recommend_night.png
│ │ │ ├── ic_mark_recommend.png
│ │ │ ├── icon_new.png
│ │ │ ├── ic_toast_bury.png
│ │ │ ├── ic_toast_digg.png
│ │ │ ├── ic_toast_fav.png
│ │ │ ├── ic_toast_post_fail.png
│ │ │ ├── ic_toast_post_ok.png
│ │ │ ├── ic_toast_unfav.png
│ │ │ ├── ic_video.png
│ │ │ ├── left_drawer_activity.png
│ │ │ ├── left_drawer_activity_press.png
│ │ │ ├── left_drawer_download.png
│ │ │ ├── left_drawer_pgc_normal.png
│ │ │ ├── left_drawer_pgc_pressed.png
│ │ │ ├── listpage_more_close_normal.png
│ │ │ ├── listpage_more_close_pressed.png
│ │ │ ├── listpage_more_dislike_normal.png
│ │ │ ├── listpage_more_dislike_pressed.png
│ │ │ ├── listpage_more_dislike_selected_normal.png
│ │ │ ├── listpage_more_dislike_selected_pressed.png
│ │ │ ├── listpage_more_like_normal.png
│ │ │ ├── listpage_more_like_pressed.png
│ │ │ ├── listpage_more_like_seleted_normal.png
│ │ │ ├── listpage_more_like_seleted_pressed.png
│ │ │ ├── listpage_more_speak_normal.png
│ │ │ ├── listpage_more_speak_pressed.png
│ │ │ ├── login_background_introduce.png
│ │ │ ├── popicon_listpage_normal.png
│ │ │ ├── popicon_listpage_pressed.png
│ │ │ ├── profile_cell_down_shadow.png
│ │ │ ├── refreshicon_titlebar.png
│ │ │ ├── review_toolbar_normal.png
│ │ │ ├── review_toolbar_pressed.png
│ │ │ ├── right_drawer_attention_normal.png
│ │ │ ├── right_drawer_attention_pressed.png
│ │ │ ├── right_drawer_normal.png
│ │ │ ├── right_drawer_pressed.png
│ │ │ ├── small_loadpic_empty_listpage.png
│ │ │ ├── spinner_76_inner_holo.png
│ │ │ ├── spinner_76_outer_holo.png
│ │ │ ├── splash.png
│ │ │ ├── switch_btn_off.png
│ │ │ ├── switch_btn_on.png
│ │ │ ├── switch_btn_slipper.png
│ │ │ ├── titlebar_refresh_detail_cancel.png
│ │ │ ├── titlebar_review_normal.png
│ │ │ ├── titlebar_review_presssed.png
│ │ │ ├── title.png
│ │ │ ├── wiper_switch_off_btn.png
│ │ │ ├── wiper_switch_on_btn.png
│ │ │ └── wiper_switch_slipper_btn.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ ├── R.txt
│ └── TopNews.apk
├── gen
│ └── com
│ ├── jeremyfeinstein
│ │ └── slidingmenu
│ │ └── lib
│ │ └── R.java
│ └── topnews
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── library
├── libs
│ ├── jsoup-1.7.2.jar
│ └── universal-image-loader-1.9.2-SNAPSHOT-with-sources.jar
├── lint.xml
├── proguard-project.txt
├── project.properties
├── res
│ ├── anim
│ │ ├── slide_in_left.xml
│ │ ├── slide_in_right.xml
│ │ ├── slide_left_in.xml
│ │ ├── slide_left_out.xml
│ │ ├── slide_out_left.xml
│ │ ├── slide_out_right.xml
│ │ └── slide_right_out.xml
│ ├── color
│ │ ├── btn_common_text.xml
│ │ ├── dialog_listpage_text.xml
│ │ ├── item_abstract.xml
│ │ ├── item_title.xml
│ │ ├── left_drawer_item_text.xml
│ │ ├── setting_alt_text.xml
│ │ ├── subscribe_item_text_color.xml
│ │ └── top_category_scroll_text_color_day.xml
│ ├── drawable
│ │ ├── badge_titlebar.xml
│ │ ├── bg_date.xml
│ │ ├── bg_full_image.xml
│ │ ├── bg_head_normal.xml
│ │ ├── bg_head_pressed.xml
│ │ ├── bg_head.xml
│ │ ├── bg_notify.xml
│ │ ├── bg_row_center.xml
│ │ ├── bg_row_end.xml
│ │ ├── bg_row_head.xml
│ │ ├── bg_slide_hint.xml
│ │ ├── bg_titlebar.xml
│ │ ├── btn_back_detail.xml
│ │ ├── btn_back.xml
│ │ ├── btn_category.xml
│ │ ├── btn_common.xml
│ │ ├── btn_kaixin.xml
│ │ ├── btn_qq.xml
│ │ ├── btn_renren.xml
│ │ ├── btn_sina.xml
│ │ ├── btn_tencent.xml
│ │ ├── channel_glide_day_bg.xml
│ │ ├── channel_glide_night_bg.xml
│ │ ├── commentbg_listpage.xml
│ │ ├── detail_bg_titlebar.xml
│ │ ├── detail_title_bar_clip.xml
│ │ ├── detail_title_bar_progress.xml
│ │ ├── dislike_bg.xml
│ │ ├── dislike_line.xml
│ │ ├── favorite_delete_btn_normal.xml
│ │ ├── favorite_delete_btn_pressed.xml
│ │ ├── favorite_delete_btn.xml
│ │ ├── ic_action_comment.xml
│ │ ├── ic_action_favor.xml
│ │ ├── ic_action_more.xml
│ │ ├── ic_action_next.xml
│ │ ├── ic_action_previous.xml
│ │ ├── ic_action_report.xml
│ │ ├── ic_action_repost.xml
│ │ ├── ic_action_share.xml
│ │ ├── ic_action_write.xml
│ │ ├── ic_download.xml
│ │ ├── ic_drawer_appstore.xml
│ │ ├── ic_drawer_favorite.xml
│ │ ├── ic_drawer_feedback.xml
│ │ ├── ic_drawer_message.xml
│ │ ├── ic_drawer_offline.xml
│ │ ├── ic_drawer_pgc.xml
│ │ ├── ic_drawer_search.xml
│ │ ├── ic_drawer_setting.xml
│ │ ├── image_holder_listpage_failed.xml
│ │ ├── image_holder_listpage_loading.xml
│ │ ├── image_holder_listpage.xml
│ │ ├── left_drawer_activity_selector.xml
│ │ ├── left_drawer_count_bg.xml
│ │ ├── left_drawer_item_bg.xml
│ │ ├── list_item_local_bg.xml
│ │ ├── listpage_more_close.xml
│ │ ├── listpage_more_dislike.xml
│ │ ├── listpage_more_like.xml
│ │ ├── listpage_more_speech.xml
│ │ ├── menu_back_sliding.xml
│ │ ├── newsbg_listpage.xml
│ │ ├── popicon_listpage.xml
│ │ ├── progress_large_holo.xml
│ │ ├── radio_buttong_bg.xml
│ │ ├── right_drawer_attention.xml
│ │ ├── right_drawer_dynamic_refresh.xml
│ │ ├── right_drawer_top_count_bg.xml
│ │ ├── right_drawer.xml
│ │ ├── round_avatar_bg.xml
│ │ ├── shadowright.xml
│ │ ├── shadow.xml
│ │ ├── small_image_holder_listpage_failed.xml
│ │ ├── small_image_holder_listpage_loading.xml
│ │ ├── small_image_holder_listpage.xml
│ │ ├── subscribe_bg.xml
│ │ ├── subscribe_item_bg.xml
│ │ ├── subscribe_item_text_color_night.xml
│ │ ├── switch_btn.xml
│ │ ├── titlebar_review.xml
│ │ ├── top_category_scroll_text_view_bg_night.xml
│ │ ├── top_category_scroll_text_view_bg.xml
│ │ └── wiper_switch_btn.xml
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-nodpi
│ │ ├── icon.png
│ │ ├── top_popu_right_up.9.png
│ │ └── transparent.9.png
│ ├── drawable-xhdpi
│ │ ├── account_icon_kaixin.png
│ │ ├── account_icon_renren.png
│ │ ├── arrow_channel.png
│ │ ├── arrow_drawer.png
│ │ ├── arrow_listpage.png
│ │ ├── big_loadpic_empty_listpage.png
│ │ ├── btn_back_detail_normal.png
│ │ ├── btn_back_detail_pressed.png
│ │ ├── btn_back_normal.png
│ │ ├── btn_back_pressed.png
│ │ ├── btn_category_normal_night.png
│ │ ├── btn_category_normal.png
│ │ ├── btn_category_pressed.png
│ │ ├── btn_common_disabled.9.png
│ │ ├── btn_common_normal.9.png
│ │ ├── btn_common_pressed.9.png
│ │ ├── btn_kaixin_normal.png
│ │ ├── btn_kaixin_pressed.png
│ │ ├── btn_qq_normal.png
│ │ ├── btn_qq_pressed.png
│ │ ├── btn_renren_normal.png
│ │ ├── btn_renren_pressed.png
│ │ ├── btn_sina_normal.png
│ │ ├── btn_sina_pressed.png
│ │ ├── btn_tencent_normal.png
│ │ ├── btn_tencent_pressed.png
│ │ ├── channel_glide_night.png
│ │ ├── channel_glide.png
│ │ ├── channel_glide_press_night.png
│ │ ├── channel_glide_press.png
│ │ ├── channel_leftblock_night.png
│ │ ├── channel_leftblock.png
│ │ ├── channel_new.png
│ │ ├── channel_rightblock_night.png
│ │ ├── channel_rightblock.png
│ │ ├── default_round_head.png
│ │ ├── detail_loading.png
│ │ ├── dynamic_refresh_normal.png
│ │ ├── dynamic_refresh_pressed.png
│ │ ├── ic_action_favor_normal.png
│ │ ├── ic_action_favor_on_normal.png
│ │ ├── ic_action_favor_on_pressed.png
│ │ ├── ic_action_favor_pressed.png
│ │ ├── ic_action_more_normal.png
│ │ ├── ic_action_more_pressed.png
│ │ ├── ic_action_next_disabled.png
│ │ ├── ic_action_next_normal.png
│ │ ├── ic_action_next_pressed.png
│ │ ├── ic_action_previous_disabled.png
│ │ ├── ic_action_previous_normal.png
│ │ ├── ic_action_previous_pressed.png
│ │ ├── ic_action_report_normal.png
│ │ ├── ic_action_report_pressed.png
│ │ ├── ic_action_repost_normal.png
│ │ ├── ic_action_repost_pressed.png
│ │ ├── ic_action_share_normal.png
│ │ ├── ic_action_share_pressed.png
│ │ ├── ic_action_write_normal.png
│ │ ├── ic_action_write_pressed.png
│ │ ├── ic_city_native.png
│ │ ├── ic_download_normal.png
│ │ ├── ic_download_pressed.png
│ │ ├── ic_drawer_appstore_normal.png
│ │ ├── ic_drawer_appstore_pressed.png
│ │ ├── ic_drawer_favorite_normal.png
│ │ ├── ic_drawer_favorite_pressed.png
│ │ ├── ic_drawer_feedback_normal.png
│ │ ├── ic_drawer_feedback_pressed.png
│ │ ├── ic_drawer_message_normal.png
│ │ ├── ic_drawer_message_pressed.png
│ │ ├── ic_drawer_offline_normal.png
│ │ ├── ic_drawer_offline_pressed.png
│ │ ├── ic_drawer_qzone.png
│ │ ├── ic_drawer_search_normal.png
│ │ ├── ic_drawer_search_pressed.png
│ │ ├── ic_drawer_setting_normal.png
│ │ ├── ic_drawer_setting_pressed.png
│ │ ├── ic_drawer_tencent.png
│ │ ├── ic_drawer_weibo.png
│ │ ├── ic_full_image_failed.png
│ │ ├── ic_launcher.png
│ │ ├── ic_mark_exclusive_night.png
│ │ ├── ic_mark_exclusive.png
│ │ ├── ic_mark_favor_night.png
│ │ ├── ic_mark_favor.png
│ │ ├── ic_mark_first_night.png
│ │ ├── ic_mark_first.png
│ │ ├── ic_mark_hot_night.png
│ │ ├── ic_mark_hot.png
│ │ ├── ic_mark_recommend_night.png
│ │ ├── ic_mark_recommend.png
│ │ ├── icon_new.png
│ │ ├── ic_toast_bury.png
│ │ ├── ic_toast_digg.png
│ │ ├── ic_toast_fav.png
│ │ ├── ic_toast_post_fail.png
│ │ ├── ic_toast_post_ok.png
│ │ ├── ic_toast_unfav.png
│ │ ├── ic_video.png
│ │ ├── left_drawer_activity.png
│ │ ├── left_drawer_activity_press.png
│ │ ├── left_drawer_download.png
│ │ ├── left_drawer_pgc_normal.png
│ │ ├── left_drawer_pgc_pressed.png
│ │ ├── listpage_more_close_normal.png
│ │ ├── listpage_more_close_pressed.png
│ │ ├── listpage_more_dislike_normal.png
│ │ ├── listpage_more_dislike_pressed.png
│ │ ├── listpage_more_dislike_selected_normal.png
│ │ ├── listpage_more_dislike_selected_pressed.png
│ │ ├── listpage_more_like_normal.png
│ │ ├── listpage_more_like_pressed.png
│ │ ├── listpage_more_like_seleted_normal.png
│ │ ├── listpage_more_like_seleted_pressed.png
│ │ ├── listpage_more_speak_normal.png
│ │ ├── listpage_more_speak_pressed.png
│ │ ├── login_background_introduce.png
│ │ ├── popicon_listpage_normal.png
│ │ ├── popicon_listpage_pressed.png
│ │ ├── profile_cell_down_shadow.png
│ │ ├── refreshicon_titlebar.png
│ │ ├── review_toolbar_normal.png
│ │ ├── review_toolbar_pressed.png
│ │ ├── right_drawer_attention_normal.png
│ │ ├── right_drawer_attention_pressed.png
│ │ ├── right_drawer_normal.png
│ │ ├── right_drawer_pressed.png
│ │ ├── small_loadpic_empty_listpage.png
│ │ ├── spinner_76_inner_holo.png
│ │ ├── spinner_76_outer_holo.png
│ │ ├── splash.png
│ │ ├── switch_btn_off.png
│ │ ├── switch_btn_on.png
│ │ ├── switch_btn_slipper.png
│ │ ├── titlebar_refresh_detail_cancel.png
│ │ ├── titlebar_review_normal.png
│ │ ├── titlebar_review_presssed.png
│ │ ├── title.png
│ │ ├── wiper_switch_off_btn.png
│ │ ├── wiper_switch_on_btn.png
│ │ └── wiper_switch_slipper_btn.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── channel_item.xml
│ │ ├── channel.xml
│ │ ├── city_category_list_tip.xml
│ │ ├── city_item_content.xml
│ │ ├── city_item_section.xml
│ │ ├── city.xml
│ │ ├── details_imageshow_item.xml
│ │ ├── details_imageshow.xml
│ │ ├── details.xml
│ │ ├── detail_title_bar.xml
│ │ ├── left_drawer_fragment.xml
│ │ ├── list_item_pop.xml
│ │ ├── list_item_section.xml
│ │ ├── list_item.xml
│ │ ├── main_head.xml
│ │ ├── main.xml
│ │ ├── news_fragment.xml
│ │ ├── popup_toast.xml
│ │ ├── profile_drawer_right.xml
│ │ ├── settings.xml
│ │ ├── title_bar.xml
│ │ ├── tool_bar.xml
│ │ └── welcome.xml
│ ├── menu
│ │ └── main.xml
│ ├── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── integers.xml
│ │ ├── strings.xml
│ │ ├── style_switch.xml
│ │ └── styles.xml
│ ├── values-sw600dp
│ │ └── dimens.xml
│ ├── values-sw720dp-land
│ │ └── dimens.xml
│ ├── values-v11
│ │ └── styles.xml
│ └── values-v14
│ └── styles.xml
├── src
│ └── com
│ └── topnews
│ ├── adapter
│ │ ├── CityAdapter.java
│ │ ├── DragAdapter.java
│ │ ├── ImagePagerAdapter.java
│ │ ├── NewsAdapter.java
│ │ ├── NewsFragmentPagerAdapter.java
│ │ └── OtherAdapter.java
│ ├── app
│ │ └── AppApplication.java
│ ├── base
│ │ └── BaseActivity.java
│ ├── bean
│ │ ├── ChannelItem.java
│ │ ├── ChannelManage.java
│ │ ├── CityEntity.java
│ │ └── NewsEntity.java
│ ├── ChannelActivity.java
│ ├── CityListActivity.java
│ ├── dao
│ │ ├── ChannelDaoInface.java
│ │ └── ChannelDao.java
│ ├── db
│ │ ├── DBUtil.java
│ │ └── SQLHelper.java
│ ├── DetailsActivity.java
│ ├── fragment
│ │ └── NewsFragment.java
│ ├── ImageShowActivity.java
│ ├── listener
│ │ └── BackGestureListener.java
│ ├── MainActivity.java
│ ├── service
│ │ └── NewsDetailsService.java
│ ├── SettingsActivity.java
│ ├── tool
│ │ ├── BaseTools.java
│ │ ├── Constants.java
│ │ ├── DataTools.java
│ │ ├── DateTools.java
│ │ └── Options.java
│ ├── view
│ │ ├── ColumnHorizontalScrollView.java
│ │ ├── DragGrid.java
│ │ ├── DrawerView.java
│ │ ├── HeadListView.java
│ │ ├── imageshow
│ │ │ ├── EclairMotionEvent.java
│ │ │ ├── ImageShowViewPager.java
│ │ │ ├── TouchImageView.java
│ │ │ └── WrapMotionEvent.java
│ │ ├── OtherGridView.java
│ │ ├── SwitchButton.java
│ │ ├── ToastDialog.java
│ │ └── TopToastView.java
│ └── Welcome.java
└── TopNews
├── AndroidManifest.xml
├── assets
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── com
│ │ ├── jeremyfeinstein
│ │ │ └── slidingmenu
│ │ │ └── lib
│ │ │ ├── R$attr.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$styleable.class
│ │ │ └── R.class
│ │ └── topnews
│ │ ├── adapter
│ │ │ ├── CityAdapter$ViewHolder.class
│ │ │ ├── CityAdapter.class
│ │ │ ├── DragAdapter.class
│ │ │ ├── ImagePagerAdapter$1.class
│ │ │ ├── ImagePagerAdapter.class
│ │ │ ├── NewsAdapter$1.class
│ │ │ ├── NewsAdapter$popAction.class
│ │ │ ├── NewsAdapter$ViewHolder.class
│ │ │ ├── NewsAdapter.class
│ │ │ ├── NewsFragmentPagerAdapter.class
│ │ │ └── OtherAdapter.class
│ │ ├── app
│ │ │ └── AppApplication.class
│ │ ├── base
│ │ │ └── BaseActivity.class
│ │ ├── bean
│ │ │ ├── ChannelItem.class
│ │ │ ├── ChannelManage.class
│ │ │ ├── CityEntity.class
│ │ │ └── NewsEntity.class
│ │ ├── BuildConfig.class
│ │ ├── ChannelActivity$1.class
│ │ ├── ChannelActivity$2.class
│ │ ├── ChannelActivity$3.class
│ │ ├── ChannelActivity.class
│ │ ├── CityListActivity$1.class
│ │ ├── CityListActivity.class
│ │ ├── dao
│ │ │ ├── ChannelDao.class
│ │ │ └── ChannelDaoInface.class
│ │ ├── db
│ │ │ ├── DBUtil.class
│ │ │ └── SQLHelper.class
│ │ ├── DetailsActivity$JavascriptInterface.class
│ │ ├── DetailsActivity$MyAsnycTask.class
│ │ ├── DetailsActivity$MyWebChromeClient.class
│ │ ├── DetailsActivity$MyWebViewClient.class
│ │ ├── DetailsActivity.class
│ │ ├── fragment
│ │ │ ├── NewsFragment$1$1.class
│ │ │ ├── NewsFragment$1.class
│ │ │ ├── NewsFragment$2.class
│ │ │ ├── NewsFragment$3.class
│ │ │ ├── NewsFragment$4$1.class
│ │ │ ├── NewsFragment$4.class
│ │ │ └── NewsFragment.class
│ │ ├── ImageShowActivity$1.class
│ │ ├── ImageShowActivity.class
│ │ ├── listener
│ │ │ └── BackGestureListener.class
│ │ ├── MainActivity$1.class
│ │ ├── MainActivity$2.class
│ │ ├── MainActivity$3.class
│ │ ├── MainActivity$4.class
│ │ ├── MainActivity$5.class
│ │ ├── MainActivity.class
│ │ ├── R$anim.class
│ │ ├── R$attr.class
│ │ ├── R$color.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$integer.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$string.class
│ │ ├── R$styleable.class
│ │ ├── R$style.class
│ │ ├── R.class
│ │ ├── service
│ │ │ └── NewsDetailsService.class
│ │ ├── SettingsActivity.class
│ │ ├── tool
│ │ │ ├── BaseTools.class
│ │ │ ├── Constants.class
│ │ │ ├── DataTools.class
│ │ │ ├── DateTools.class
│ │ │ └── Options.class
│ │ ├── view
│ │ │ ├── ColumnHorizontalScrollView.class
│ │ │ ├── DragGrid$1.class
│ │ │ ├── DragGrid$2.class
│ │ │ ├── DragGrid.class
│ │ │ ├── DrawerView$1.class
│ │ │ ├── DrawerView$2.class
│ │ │ ├── DrawerView$3.class
│ │ │ ├── DrawerView.class
│ │ │ ├── HeadListView$HeaderAdapter.class
│ │ │ ├── HeadListView.class
│ │ │ ├── imageshow
│ │ │ │ ├── EclairMotionEvent.class
│ │ │ │ ├── ImageShowViewPager.class
│ │ │ │ ├── TouchImageView$1.class
│ │ │ │ ├── TouchImageView$ScaleListener.class
│ │ │ │ ├── TouchImageView$Task.class
│ │ │ │ ├── TouchImageView$TimeHandler.class
│ │ │ │ ├── TouchImageView.class
│ │ │ │ └── WrapMotionEvent.class
│ │ │ ├── OtherGridView.class
│ │ │ ├── SwitchButton.class
│ │ │ ├── ToastDialog.class
│ │ │ └── TopToastView.class
│ │ ├── Welcome$1.class
│ │ └── Welcome.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-054aceca2bc44ed8997e6949f4bdc33c.jar
│ │ ├── android-support-v4-4db944f1953e492ac7e7924d5ee11fda.jar
│ │ ├── android-support-v4-ac6eeff7f0fec83d8515eb21afa41e19.jar
│ │ ├── jsoup-1.7.2-5574bbf1932f438152a76c0ffb95dba9.jar
│ │ ├── jsoup-1.7.2-57f6c39e4fb43993545e6b2838c394e7.jar
│ │ ├── jsoup-1.7.2-7fae609b981101aff94987eb3e0453ad.jar
│ │ ├── library_slidingmenu-3b0e8bbc9fbfeb98fc1574a517b75f05.jar
│ │ ├── library_slidingmenu-3f88232c70f44d6509e0782e578b0846.jar
│ │ ├── library_slidingmenu-c8823f04f67f857decd7090df464de20.jar
│ │ ├── universal-image-loader-1.9.2-SNAPSHOT-with-sources-40924862a3431787ae777a0f0d5c5ad5.jar
│ │ ├── universal-image-loader-1.9.2-SNAPSHOT-with-sources-e80812b1d637ca54cb006b31a45db2f3.jar
│ │ └── universal-image-loader-1.9.2-SNAPSHOT-with-sources-eecd4ff744ef892933c0675fc78135f3.jar
│ ├── jarlist.cache
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-nodpi
│ │ │ ├── icon.png
│ │ │ ├── top_popu_right_up.9.png
│ │ │ └── transparent.9.png
│ │ ├── drawable-xhdpi
│ │ │ ├── account_icon_kaixin.png
│ │ │ ├── account_icon_renren.png
│ │ │ ├── arrow_channel.png
│ │ │ ├── arrow_drawer.png
│ │ │ ├── arrow_listpage.png
│ │ │ ├── big_loadpic_empty_listpage.png
│ │ │ ├── btn_back_detail_normal.png
│ │ │ ├── btn_back_detail_pressed.png
│ │ │ ├── btn_back_normal.png
│ │ │ ├── btn_back_pressed.png
│ │ │ ├── btn_category_normal_night.png
│ │ │ ├── btn_category_normal.png
│ │ │ ├── btn_category_pressed.png
│ │ │ ├── btn_common_disabled.9.png
│ │ │ ├── btn_common_normal.9.png
│ │ │ ├── btn_common_pressed.9.png
│ │ │ ├── btn_kaixin_normal.png
│ │ │ ├── btn_kaixin_pressed.png
│ │ │ ├── btn_qq_normal.png
│ │ │ ├── btn_qq_pressed.png
│ │ │ ├── btn_renren_normal.png
│ │ │ ├── btn_renren_pressed.png
│ │ │ ├── btn_sina_normal.png
│ │ │ ├── btn_sina_pressed.png
│ │ │ ├── btn_tencent_normal.png
│ │ │ ├── btn_tencent_pressed.png
│ │ │ ├── channel_glide_night.png
│ │ │ ├── channel_glide.png
│ │ │ ├── channel_glide_press_night.png
│ │ │ ├── channel_glide_press.png
│ │ │ ├── channel_leftblock_night.png
│ │ │ ├── channel_leftblock.png
│ │ │ ├── channel_new.png
│ │ │ ├── channel_rightblock_night.png
│ │ │ ├── channel_rightblock.png
│ │ │ ├── default_round_head.png
│ │ │ ├── detail_loading.png
│ │ │ ├── dynamic_refresh_normal.png
│ │ │ ├── dynamic_refresh_pressed.png
│ │ │ ├── ic_action_favor_normal.png
│ │ │ ├── ic_action_favor_on_normal.png
│ │ │ ├── ic_action_favor_on_pressed.png
│ │ │ ├── ic_action_favor_pressed.png
│ │ │ ├── ic_action_more_normal.png
│ │ │ ├── ic_action_more_pressed.png
│ │ │ ├── ic_action_next_disabled.png
│ │ │ ├── ic_action_next_normal.png
│ │ │ ├── ic_action_next_pressed.png
│ │ │ ├── ic_action_previous_disabled.png
│ │ │ ├── ic_action_previous_normal.png
│ │ │ ├── ic_action_previous_pressed.png
│ │ │ ├── ic_action_report_normal.png
│ │ │ ├── ic_action_report_pressed.png
│ │ │ ├── ic_action_repost_normal.png
│ │ │ ├── ic_action_repost_pressed.png
│ │ │ ├── ic_action_share_normal.png
│ │ │ ├── ic_action_share_pressed.png
│ │ │ ├── ic_action_write_normal.png
│ │ │ ├── ic_action_write_pressed.png
│ │ │ ├── ic_city_native.png
│ │ │ ├── ic_download_normal.png
│ │ │ ├── ic_download_pressed.png
│ │ │ ├── ic_drawer_appstore_normal.png
│ │ │ ├── ic_drawer_appstore_pressed.png
│ │ │ ├── ic_drawer_favorite_normal.png
│ │ │ ├── ic_drawer_favorite_pressed.png
│ │ │ ├── ic_drawer_feedback_normal.png
│ │ │ ├── ic_drawer_feedback_pressed.png
│ │ │ ├── ic_drawer_message_normal.png
│ │ │ ├── ic_drawer_message_pressed.png
│ │ │ ├── ic_drawer_offline_normal.png
│ │ │ ├── ic_drawer_offline_pressed.png
│ │ │ ├── ic_drawer_qzone.png
│ │ │ ├── ic_drawer_search_normal.png
│ │ │ ├── ic_drawer_search_pressed.png
│ │ │ ├── ic_drawer_setting_normal.png
│ │ │ ├── ic_drawer_setting_pressed.png
│ │ │ ├── ic_drawer_tencent.png
│ │ │ ├── ic_drawer_weibo.png
│ │ │ ├── ic_full_image_failed.png
│ │ │ ├── ic_launcher.png
│ │ │ ├── ic_mark_exclusive_night.png
│ │ │ ├── ic_mark_exclusive.png
│ │ │ ├── ic_mark_favor_night.png
│ │ │ ├── ic_mark_favor.png
│ │ │ ├── ic_mark_first_night.png
│ │ │ ├── ic_mark_first.png
│ │ │ ├── ic_mark_hot_night.png
│ │ │ ├── ic_mark_hot.png
│ │ │ ├── ic_mark_recommend_night.png
│ │ │ ├── ic_mark_recommend.png
│ │ │ ├── icon_new.png
│ │ │ ├── ic_toast_bury.png
│ │ │ ├── ic_toast_digg.png
│ │ │ ├── ic_toast_fav.png
│ │ │ ├── ic_toast_post_fail.png
│ │ │ ├── ic_toast_post_ok.png
│ │ │ ├── ic_toast_unfav.png
│ │ │ ├── ic_video.png
│ │ │ ├── left_drawer_activity.png
│ │ │ ├── left_drawer_activity_press.png
│ │ │ ├── left_drawer_download.png
│ │ │ ├── left_drawer_pgc_normal.png
│ │ │ ├── left_drawer_pgc_pressed.png
│ │ │ ├── listpage_more_close_normal.png
│ │ │ ├── listpage_more_close_pressed.png
│ │ │ ├── listpage_more_dislike_normal.png
│ │ │ ├── listpage_more_dislike_pressed.png
│ │ │ ├── listpage_more_dislike_selected_normal.png
│ │ │ ├── listpage_more_dislike_selected_pressed.png
│ │ │ ├── listpage_more_like_normal.png
│ │ │ ├── listpage_more_like_pressed.png
│ │ │ ├── listpage_more_like_seleted_normal.png
│ │ │ ├── listpage_more_like_seleted_pressed.png
│ │ │ ├── listpage_more_speak_normal.png
│ │ │ ├── listpage_more_speak_pressed.png
│ │ │ ├── login_background_introduce.png
│ │ │ ├── popicon_listpage_normal.png
│ │ │ ├── popicon_listpage_pressed.png
│ │ │ ├── profile_cell_down_shadow.png
│ │ │ ├── refreshicon_titlebar.png
│ │ │ ├── review_toolbar_normal.png
│ │ │ ├── review_toolbar_pressed.png
│ │ │ ├── right_drawer_attention_normal.png
│ │ │ ├── right_drawer_attention_pressed.png
│ │ │ ├── right_drawer_normal.png
│ │ │ ├── right_drawer_pressed.png
│ │ │ ├── small_loadpic_empty_listpage.png
│ │ │ ├── spinner_76_inner_holo.png
│ │ │ ├── spinner_76_outer_holo.png
│ │ │ ├── splash.png
│ │ │ ├── switch_btn_off.png
│ │ │ ├── switch_btn_on.png
│ │ │ ├── switch_btn_slipper.png
│ │ │ ├── titlebar_refresh_detail_cancel.png
│ │ │ ├── titlebar_review_normal.png
│ │ │ ├── titlebar_review_presssed.png
│ │ │ ├── title.png
│ │ │ ├── wiper_switch_off_btn.png
│ │ │ ├── wiper_switch_on_btn.png
│ │ │ └── wiper_switch_slipper_btn.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ ├── R.txt
│ └── TopNews.apk
├── gen
│ └── com
│ ├── jeremyfeinstein
│ │ └── slidingmenu
│ │ └── lib
│ │ └── R.java
│ └── topnews
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
│ ├── jsoup-1.7.2.jar
│ └── universal-image-loader-1.9.2-SNAPSHOT-with-sources.jar
├── lint.xml
├── proguard-project.txt
├── project.properties
├── res
│ ├── anim
│ │ ├── slide_in_left.xml
│ │ ├── slide_in_right.xml
│ │ ├── slide_left_in.xml
│ │ ├── slide_left_out.xml
│ │ ├── slide_out_left.xml
│ │ ├── slide_out_right.xml
│ │ └── slide_right_out.xml
│ ├── color
│ │ ├── btn_common_text.xml
│ │ ├── dialog_listpage_text.xml
│ │ ├── item_abstract.xml
│ │ ├── item_title.xml
│ │ ├── left_drawer_item_text.xml
│ │ ├── setting_alt_text.xml
│ │ ├── subscribe_item_text_color.xml
│ │ └── top_category_scroll_text_color_day.xml
│ ├── drawable
│ │ ├── badge_titlebar.xml
│ │ ├── bg_date.xml
│ │ ├── bg_full_image.xml
│ │ ├── bg_head_normal.xml
│ │ ├── bg_head_pressed.xml
│ │ ├── bg_head.xml
│ │ ├── bg_notify.xml
│ │ ├── bg_row_center.xml
│ │ ├── bg_row_end.xml
│ │ ├── bg_row_head.xml
│ │ ├── bg_slide_hint.xml
│ │ ├── bg_titlebar.xml
│ │ ├── btn_back_detail.xml
│ │ ├── btn_back.xml
│ │ ├── btn_category.xml
│ │ ├── btn_common.xml
│ │ ├── btn_kaixin.xml
│ │ ├── btn_qq.xml
│ │ ├── btn_renren.xml
│ │ ├── btn_sina.xml
│ │ ├── btn_tencent.xml
│ │ ├── channel_glide_day_bg.xml
│ │ ├── channel_glide_night_bg.xml
│ │ ├── commentbg_listpage.xml
│ │ ├── detail_bg_titlebar.xml
│ │ ├── detail_title_bar_clip.xml
│ │ ├── detail_title_bar_progress.xml
│ │ ├── dislike_bg.xml
│ │ ├── dislike_line.xml
│ │ ├── favorite_delete_btn_normal.xml
│ │ ├── favorite_delete_btn_pressed.xml
│ │ ├── favorite_delete_btn.xml
│ │ ├── ic_action_comment.xml
│ │ ├── ic_action_favor.xml
│ │ ├── ic_action_more.xml
│ │ ├── ic_action_next.xml
│ │ ├── ic_action_previous.xml
│ │ ├── ic_action_report.xml
│ │ ├── ic_action_repost.xml
│ │ ├── ic_action_share.xml
│ │ ├── ic_action_write.xml
│ │ ├── ic_download.xml
│ │ ├── ic_drawer_appstore.xml
│ │ ├── ic_drawer_favorite.xml
│ │ ├── ic_drawer_feedback.xml
│ │ ├── ic_drawer_message.xml
│ │ ├── ic_drawer_offline.xml
│ │ ├── ic_drawer_pgc.xml
│ │ ├── ic_drawer_search.xml
│ │ ├── ic_drawer_setting.xml
│ │ ├── image_holder_listpage_failed.xml
│ │ ├── image_holder_listpage_loading.xml
│ │ ├── image_holder_listpage.xml
│ │ ├── left_drawer_activity_selector.xml
│ │ ├── left_drawer_count_bg.xml
│ │ ├── left_drawer_item_bg.xml
│ │ ├── list_item_local_bg.xml
│ │ ├── listpage_more_close.xml
│ │ ├── listpage_more_dislike.xml
│ │ ├── listpage_more_like.xml
│ │ ├── listpage_more_speech.xml
│ │ ├── menu_back_sliding.xml
│ │ ├── newsbg_listpage.xml
│ │ ├── popicon_listpage.xml
│ │ ├── progress_large_holo.xml
│ │ ├── radio_buttong_bg.xml
│ │ ├── right_drawer_attention.xml
│ │ ├── right_drawer_dynamic_refresh.xml
│ │ ├── right_drawer_top_count_bg.xml
│ │ ├── right_drawer.xml
│ │ ├── round_avatar_bg.xml
│ │ ├── shadowright.xml
│ │ ├── shadow.xml
│ │ ├── small_image_holder_listpage_failed.xml
│ │ ├── small_image_holder_listpage_loading.xml
│ │ ├── small_image_holder_listpage.xml
│ │ ├── subscribe_bg.xml
│ │ ├── subscribe_item_bg.xml
│ │ ├── subscribe_item_text_color_night.xml
│ │ ├── switch_btn.xml
│ │ ├── titlebar_review.xml
│ │ ├── top_category_scroll_text_view_bg_night.xml
│ │ ├── top_category_scroll_text_view_bg.xml
│ │ └── wiper_switch_btn.xml
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-nodpi
│ │ ├── icon.png
│ │ ├── top_popu_right_up.9.png
│ │ └── transparent.9.png
│ ├── drawable-xhdpi
│ │ ├── account_icon_kaixin.png
│ │ ├── account_icon_renren.png
│ │ ├── arrow_channel.png
│ │ ├── arrow_drawer.png
│ │ ├── arrow_listpage.png
│ │ ├── big_loadpic_empty_listpage.png
│ │ ├── btn_back_detail_normal.png
│ │ ├── btn_back_detail_pressed.png
│ │ ├── btn_back_normal.png
│ │ ├── btn_back_pressed.png
│ │ ├── btn_category_normal_night.png
│ │ ├── btn_category_normal.png
│ │ ├── btn_category_pressed.png
│ │ ├── btn_common_disabled.9.png
│ │ ├── btn_common_normal.9.png
│ │ ├── btn_common_pressed.9.png
│ │ ├── btn_kaixin_normal.png
│ │ ├── btn_kaixin_pressed.png
│ │ ├── btn_qq_normal.png
│ │ ├── btn_qq_pressed.png
│ │ ├── btn_renren_normal.png
│ │ ├── btn_renren_pressed.png
│ │ ├── btn_sina_normal.png
│ │ ├── btn_sina_pressed.png
│ │ ├── btn_tencent_normal.png
│ │ ├── btn_tencent_pressed.png
│ │ ├── channel_glide_night.png
│ │ ├── channel_glide.png
│ │ ├── channel_glide_press_night.png
│ │ ├── channel_glide_press.png
│ │ ├── channel_leftblock_night.png
│ │ ├── channel_leftblock.png
│ │ ├── channel_new.png
│ │ ├── channel_rightblock_night.png
│ │ ├── channel_rightblock.png
│ │ ├── default_round_head.png
│ │ ├── detail_loading.png
│ │ ├── dynamic_refresh_normal.png
│ │ ├── dynamic_refresh_pressed.png
│ │ ├── ic_action_favor_normal.png
│ │ ├── ic_action_favor_on_normal.png
│ │ ├── ic_action_favor_on_pressed.png
│ │ ├── ic_action_favor_pressed.png
│ │ ├── ic_action_more_normal.png
│ │ ├── ic_action_more_pressed.png
│ │ ├── ic_action_next_disabled.png
│ │ ├── ic_action_next_normal.png
│ │ ├── ic_action_next_pressed.png
│ │ ├── ic_action_previous_disabled.png
│ │ ├── ic_action_previous_normal.png
│ │ ├── ic_action_previous_pressed.png
│ │ ├── ic_action_report_normal.png
│ │ ├── ic_action_report_pressed.png
│ │ ├── ic_action_repost_normal.png
│ │ ├── ic_action_repost_pressed.png
│ │ ├── ic_action_share_normal.png
│ │ ├── ic_action_share_pressed.png
│ │ ├── ic_action_write_normal.png
│ │ ├── ic_action_write_pressed.png
│ │ ├── ic_city_native.png
│ │ ├── ic_download_normal.png
│ │ ├── ic_download_pressed.png
│ │ ├── ic_drawer_appstore_normal.png
│ │ ├── ic_drawer_appstore_pressed.png
│ │ ├── ic_drawer_favorite_normal.png
│ │ ├── ic_drawer_favorite_pressed.png
│ │ ├── ic_drawer_feedback_normal.png
│ │ ├── ic_drawer_feedback_pressed.png
│ │ ├── ic_drawer_message_normal.png
│ │ ├── ic_drawer_message_pressed.png
│ │ ├── ic_drawer_offline_normal.png
│ │ ├── ic_drawer_offline_pressed.png
│ │ ├── ic_drawer_qzone.png
│ │ ├── ic_drawer_search_normal.png
│ │ ├── ic_drawer_search_pressed.png
│ │ ├── ic_drawer_setting_normal.png
│ │ ├── ic_drawer_setting_pressed.png
│ │ ├── ic_drawer_tencent.png
│ │ ├── ic_drawer_weibo.png
│ │ ├── ic_full_image_failed.png
│ │ ├── ic_launcher.png
│ │ ├── ic_mark_exclusive_night.png
│ │ ├── ic_mark_exclusive.png
│ │ ├── ic_mark_favor_night.png
│ │ ├── ic_mark_favor.png
│ │ ├── ic_mark_first_night.png
│ │ ├── ic_mark_first.png
│ │ ├── ic_mark_hot_night.png
│ │ ├── ic_mark_hot.png
│ │ ├── ic_mark_recommend_night.png
│ │ ├── ic_mark_recommend.png
│ │ ├── icon_new.png
│ │ ├── ic_toast_bury.png
│ │ ├── ic_toast_digg.png
│ │ ├── ic_toast_fav.png
│ │ ├── ic_toast_post_fail.png
│ │ ├── ic_toast_post_ok.png
│ │ ├── ic_toast_unfav.png
│ │ ├── ic_video.png
│ │ ├── left_drawer_activity.png
│ │ ├── left_drawer_activity_press.png
│ │ ├── left_drawer_download.png
│ │ ├── left_drawer_pgc_normal.png
│ │ ├── left_drawer_pgc_pressed.png
│ │ ├── listpage_more_close_normal.png
│ │ ├── listpage_more_close_pressed.png
│ │ ├── listpage_more_dislike_normal.png
│ │ ├── listpage_more_dislike_pressed.png
│ │ ├── listpage_more_dislike_selected_normal.png
│ │ ├── listpage_more_dislike_selected_pressed.png
│ │ ├── listpage_more_like_normal.png
│ │ ├── listpage_more_like_pressed.png
│ │ ├── listpage_more_like_seleted_normal.png
│ │ ├── listpage_more_like_seleted_pressed.png
│ │ ├── listpage_more_speak_normal.png
│ │ ├── listpage_more_speak_pressed.png
│ │ ├── login_background_introduce.png
│ │ ├── popicon_listpage_normal.png
│ │ ├── popicon_listpage_pressed.png
│ │ ├── profile_cell_down_shadow.png
│ │ ├── refreshicon_titlebar.png
│ │ ├── review_toolbar_normal.png
│ │ ├── review_toolbar_pressed.png
│ │ ├── right_drawer_attention_normal.png
│ │ ├── right_drawer_attention_pressed.png
│ │ ├── right_drawer_normal.png
│ │ ├── right_drawer_pressed.png
│ │ ├── small_loadpic_empty_listpage.png
│ │ ├── spinner_76_inner_holo.png
│ │ ├── spinner_76_outer_holo.png
│ │ ├── splash.png
│ │ ├── switch_btn_off.png
│ │ ├── switch_btn_on.png
│ │ ├── switch_btn_slipper.png
│ │ ├── titlebar_refresh_detail_cancel.png
│ │ ├── titlebar_review_normal.png
│ │ ├── titlebar_review_presssed.png
│ │ ├── title.png
│ │ ├── wiper_switch_off_btn.png
│ │ ├── wiper_switch_on_btn.png
│ │ └── wiper_switch_slipper_btn.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── channel_item.xml
│ │ ├── channel.xml
│ │ ├── city_category_list_tip.xml
│ │ ├── city_item_content.xml
│ │ ├── city_item_section.xml
│ │ ├── city.xml
│ │ ├── details_imageshow_item.xml
│ │ ├── details_imageshow.xml
│ │ ├── details.xml
│ │ ├── detail_title_bar.xml
│ │ ├── left_drawer_fragment.xml
│ │ ├── list_item_pop.xml
│ │ ├── list_item_section.xml
│ │ ├── list_item.xml
│ │ ├── main_head.xml
│ │ ├── main.xml
│ │ ├── news_fragment.xml
│ │ ├── popup_toast.xml
│ │ ├── profile_drawer_right.xml
│ │ ├── settings.xml
│ │ ├── title_bar.xml
│ │ ├── tool_bar.xml
│ │ └── welcome.xml
│ ├── menu
│ │ └── main.xml
│ ├── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── integers.xml
│ │ ├── strings.xml
│ │ ├── style_switch.xml
│ │ └── styles.xml
│ ├── values-sw600dp
│ │ └── dimens.xml
│ ├── values-sw720dp-land
│ │ └── dimens.xml
│ ├── values-v11
│ │ └── styles.xml
│ └── values-v14
│ └── styles.xml
└── src
└── com
└── topnews
├── adapter
│ ├── CityAdapter.java
│ ├── DragAdapter.java
│ ├── ImagePagerAdapter.java
│ ├── NewsAdapter.java
│ ├── NewsFragmentPagerAdapter.java
│ └── OtherAdapter.java
├── app
│ └── AppApplication.java
├── base
│ └── BaseActivity.java
├── bean
│ ├── ChannelItem.java
│ ├── ChannelManage.java
│ ├── CityEntity.java
│ └── NewsEntity.java
├── ChannelActivity.java
├── CityListActivity.java
├── dao
│ ├── ChannelDaoInface.java
│ └── ChannelDao.java
├── db
│ ├── DBUtil.java
│ └── SQLHelper.java
├── DetailsActivity.java
├── fragment
│ └── NewsFragment.java
├── ImageShowActivity.java
├── listener
│ └── BackGestureListener.java
├── MainActivity.java
├── service
│ └── NewsDetailsService.java
├── SettingsActivity.java
├── tool
│ ├── BaseTools.java
│ ├── Constants.java
│ ├── DataTools.java
│ ├── DateTools.java
│ └── Options.java
├── view
│ ├── ColumnHorizontalScrollView.java
│ ├── DragGrid.java
│ ├── DrawerView.java
│ ├── HeadListView.java
│ ├── imageshow
│ │ ├── EclairMotionEvent.java
│ │ ├── ImageShowViewPager.java
│ │ ├── TouchImageView.java
│ │ └── WrapMotionEvent.java
│ ├── OtherGridView.java
│ ├── SwitchButton.java
│ ├── ToastDialog.java
│ └── TopToastView.java
└── Welcome.java
166 directories, 1246 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论