实例介绍
android本地小说阅读器源码,博客地址:http://blog.csdn.net/mario_faker/article/details/79619193
【实例截图】
【核心代码】
Android小说阅读器
└── Horizon
├── app
│ ├── app.iml
│ ├── build
│ │ ├── generated
│ │ │ └── source
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── horizon
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ ├── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── horizon
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── horizon
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── debug
│ │ │ │ └── com
│ │ │ │ └── horizon
│ │ │ │ └── R.java
│ │ │ └── release
│ │ │ └── com
│ │ │ └── horizon
│ │ │ └── R.java
│ │ ├── intermediates
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── debug
│ │ │ │ │ ├── multi
│ │ │ │ │ │ ├── values.json
│ │ │ │ │ │ ├── values-sw720dp-land-v13.json
│ │ │ │ │ │ ├── values-v11.json
│ │ │ │ │ │ └── values-v14.json
│ │ │ │ │ └── single
│ │ │ │ │ ├── anim.json
│ │ │ │ │ ├── drawable-hdpi.json
│ │ │ │ │ ├── drawable.json
│ │ │ │ │ ├── drawable-mdpi.json
│ │ │ │ │ ├── drawable-xhdpi.json
│ │ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ │ ├── drawable-xxhdpi.json
│ │ │ │ │ ├── layout.json
│ │ │ │ │ └── menu.json
│ │ │ │ └── release
│ │ │ │ ├── multi
│ │ │ │ │ ├── values.json
│ │ │ │ │ ├── values-sw720dp-land-v13.json
│ │ │ │ │ ├── values-v11.json
│ │ │ │ │ └── values-v14.json
│ │ │ │ └── single
│ │ │ │ ├── anim.json
│ │ │ │ ├── drawable-hdpi.json
│ │ │ │ ├── drawable.json
│ │ │ │ ├── drawable-mdpi.json
│ │ │ │ ├── drawable-xhdpi.json
│ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ ├── drawable-xxhdpi.json
│ │ │ │ ├── layout.json
│ │ │ │ └── menu.json
│ │ │ ├── classes
│ │ │ │ ├── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── horizon
│ │ │ │ │ ├── adapter
│ │ │ │ │ │ ├── BookshelfGVAdapter$1.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$1$1.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$1$2.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$1.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$2$1.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$2$2.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$2.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$3$1.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$3.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$4.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2$5.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$2.class
│ │ │ │ │ │ ├── BookshelfGVAdapter$ViewHolder.class
│ │ │ │ │ │ ├── BookshelfGVAdapter.class
│ │ │ │ │ │ ├── FilebrowsingLVAdapter$ViewHolder.class
│ │ │ │ │ │ ├── FilebrowsingLVAdapter.class
│ │ │ │ │ │ ├── NeaterGVAdapter$1.class
│ │ │ │ │ │ ├── NeaterGVAdapter$2.class
│ │ │ │ │ │ ├── NeaterGVAdapter$ViewHolder.class
│ │ │ │ │ │ └── NeaterGVAdapter.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── BookInfoDao.class
│ │ │ │ │ │ ├── ConfigDao.class
│ │ │ │ │ │ └── DBOpenHelper.class
│ │ │ │ │ ├── global
│ │ │ │ │ │ ├── PageTurnType.class
│ │ │ │ │ │ └── ScreenOrientation.class
│ │ │ │ │ ├── model
│ │ │ │ │ │ ├── Book.class
│ │ │ │ │ │ ├── BookLabel.class
│ │ │ │ │ │ └── Chapter.class
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$array.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$menu.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ └── ui
│ │ │ │ │ ├── AboutUs.class
│ │ │ │ │ ├── BookChapter$1.class
│ │ │ │ │ ├── BookChapter.class
│ │ │ │ │ ├── BookMark$1.class
│ │ │ │ │ ├── BookMark$2$1.class
│ │ │ │ │ ├── BookMark$2$2.class
│ │ │ │ │ ├── BookMark$2.class
│ │ │ │ │ ├── BookMark.class
│ │ │ │ │ ├── BookPageFactory$1.class
│ │ │ │ │ ├── BookPageFactory.class
│ │ │ │ │ ├── BookshelfViewGroup.class
│ │ │ │ │ ├── CutChapters.class
│ │ │ │ │ ├── HomeT1Filebrowsing$backToBookshelfListener.class
│ │ │ │ │ ├── HomeT1Filebrowsing$CheckAllListener.class
│ │ │ │ │ ├── HomeT1Filebrowsing$DeleteListener$1.class
│ │ │ │ │ ├── HomeT1Filebrowsing$DeleteListener$2.class
│ │ │ │ │ ├── HomeT1Filebrowsing$DeleteListener.class
│ │ │ │ │ ├── HomeT1Filebrowsing$HandleListener.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemClick.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$1$1.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$1$2.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$1.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$2$1.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$2$2.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$2.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$3$1.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$3.class
│ │ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick.class
│ │ │ │ │ ├── HomeT1Filebrowsing$RemoveListener$1.class
│ │ │ │ │ ├── HomeT1Filebrowsing$RemoveListener.class
│ │ │ │ │ ├── HomeT1Filebrowsing$UpOneLevelListener.class
│ │ │ │ │ ├── HomeT1Filebrowsing.class
│ │ │ │ │ ├── HomeT2Bookshelf$Add_classify_click$1.class
│ │ │ │ │ ├── HomeT2Bookshelf$Add_classify_click$2.class
│ │ │ │ │ ├── HomeT2Bookshelf$Add_classify_click.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_click.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$1.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$2.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$3$1.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$3$2.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$3.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$4$1.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$4$2.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$4.class
│ │ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick.class
│ │ │ │ │ ├── HomeT2Bookshelf$openBottomMenuClick.class
│ │ │ │ │ ├── HomeT2Bookshelf$openClassify_click.class
│ │ │ │ │ ├── HomeT2Bookshelf.class
│ │ │ │ │ ├── MainReader$1.class
│ │ │ │ │ ├── MainReader$2.class
│ │ │ │ │ ├── MainReader$3.class
│ │ │ │ │ ├── MainReader$4.class
│ │ │ │ │ ├── MainReader$5.class
│ │ │ │ │ ├── MainReader$TitleClickEvent.class
│ │ │ │ │ ├── MainReader.class
│ │ │ │ │ ├── MyMenu$1.class
│ │ │ │ │ ├── MyMenu$MyMenuAdapter$1.class
│ │ │ │ │ ├── MyMenu$MyMenuAdapter.class
│ │ │ │ │ ├── MyMenu.class
│ │ │ │ │ ├── mysettings
│ │ │ │ │ │ ├── AlarmReceiver.class
│ │ │ │ │ │ ├── Changpassword$1.class
│ │ │ │ │ │ ├── Changpassword$2.class
│ │ │ │ │ │ ├── Changpassword.class
│ │ │ │ │ │ ├── HelpActivity.class
│ │ │ │ │ │ ├── Listview.class
│ │ │ │ │ │ ├── MyAdapter$1.class
│ │ │ │ │ │ ├── MyAdapter$ViewHolder.class
│ │ │ │ │ │ ├── MyAdapter.class
│ │ │ │ │ │ ├── PasswordActivity$1.class
│ │ │ │ │ │ ├── PasswordActivity$2.class
│ │ │ │ │ │ ├── PasswordActivity.class
│ │ │ │ │ │ ├── Remindtime$1$1.class
│ │ │ │ │ │ ├── Remindtime$1.class
│ │ │ │ │ │ ├── Remindtime$2.class
│ │ │ │ │ │ ├── Remindtime.class
│ │ │ │ │ │ ├── RemoveActivity$1.class
│ │ │ │ │ │ ├── RemoveActivity$2.class
│ │ │ │ │ │ └── RemoveActivity.class
│ │ │ │ │ ├── NeaterBookshelf$CheckAllClick.class
│ │ │ │ │ ├── NeaterBookshelf$DeleteClick$1.class
│ │ │ │ │ ├── NeaterBookshelf$DeleteClick$2.class
│ │ │ │ │ ├── NeaterBookshelf$DeleteClick.class
│ │ │ │ │ ├── NeaterBookshelf$RemoveClick$1.class
│ │ │ │ │ ├── NeaterBookshelf$RemoveClick.class
│ │ │ │ │ ├── NeaterBookshelf$ReturnClick.class
│ │ │ │ │ ├── NeaterBookshelf.class
│ │ │ │ │ ├── PageWidget.class
│ │ │ │ │ ├── Setting$1.class
│ │ │ │ │ ├── Setting$2.class
│ │ │ │ │ ├── Setting$3.class
│ │ │ │ │ ├── Setting$4.class
│ │ │ │ │ ├── Setting$5.class
│ │ │ │ │ ├── Setting$6.class
│ │ │ │ │ ├── Setting$7.class
│ │ │ │ │ ├── Setting$8.class
│ │ │ │ │ ├── Setting.class
│ │ │ │ │ ├── SplashScreen$1.class
│ │ │ │ │ ├── SplashScreen$2.class
│ │ │ │ │ ├── SplashScreen$3.class
│ │ │ │ │ ├── SplashScreen.class
│ │ │ │ │ ├── TestTest$1.class
│ │ │ │ │ ├── TestTest$2.class
│ │ │ │ │ └── TestTest.class
│ │ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── horizon
│ │ │ │ ├── adapter
│ │ │ │ │ ├── BookshelfGVAdapter$1.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$1$1.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$1$2.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$1.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$2$1.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$2$2.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$2.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$3$1.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$3.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$4.class
│ │ │ │ │ ├── BookshelfGVAdapter$2$5.class
│ │ │ │ │ ├── BookshelfGVAdapter$2.class
│ │ │ │ │ ├── BookshelfGVAdapter$ViewHolder.class
│ │ │ │ │ ├── BookshelfGVAdapter.class
│ │ │ │ │ ├── FilebrowsingLVAdapter$ViewHolder.class
│ │ │ │ │ ├── FilebrowsingLVAdapter.class
│ │ │ │ │ ├── NeaterGVAdapter$1.class
│ │ │ │ │ ├── NeaterGVAdapter$2.class
│ │ │ │ │ ├── NeaterGVAdapter$ViewHolder.class
│ │ │ │ │ └── NeaterGVAdapter.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── dao
│ │ │ │ │ ├── BookInfoDao.class
│ │ │ │ │ ├── ConfigDao.class
│ │ │ │ │ └── DBOpenHelper.class
│ │ │ │ ├── global
│ │ │ │ │ ├── PageTurnType.class
│ │ │ │ │ └── ScreenOrientation.class
│ │ │ │ ├── model
│ │ │ │ │ ├── Book.class
│ │ │ │ │ ├── BookLabel.class
│ │ │ │ │ └── Chapter.class
│ │ │ │ ├── R$anim.class
│ │ │ │ ├── R$array.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$menu.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ └── ui
│ │ │ │ ├── AboutUs.class
│ │ │ │ ├── BookChapter$1.class
│ │ │ │ ├── BookChapter.class
│ │ │ │ ├── BookMark$1.class
│ │ │ │ ├── BookMark$2$1.class
│ │ │ │ ├── BookMark$2$2.class
│ │ │ │ ├── BookMark$2.class
│ │ │ │ ├── BookMark.class
│ │ │ │ ├── BookPageFactory$1.class
│ │ │ │ ├── BookPageFactory.class
│ │ │ │ ├── BookshelfViewGroup.class
│ │ │ │ ├── CutChapters.class
│ │ │ │ ├── HomeT1Filebrowsing$backToBookshelfListener.class
│ │ │ │ ├── HomeT1Filebrowsing$CheckAllListener.class
│ │ │ │ ├── HomeT1Filebrowsing$DeleteListener$1.class
│ │ │ │ ├── HomeT1Filebrowsing$DeleteListener$2.class
│ │ │ │ ├── HomeT1Filebrowsing$DeleteListener.class
│ │ │ │ ├── HomeT1Filebrowsing$HandleListener.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemClick.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$1$1.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$1$2.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$1.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$2$1.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$2$2.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$2.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$3$1.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick$3.class
│ │ │ │ ├── HomeT1Filebrowsing$ListItemLongClick.class
│ │ │ │ ├── HomeT1Filebrowsing$RemoveListener$1.class
│ │ │ │ ├── HomeT1Filebrowsing$RemoveListener.class
│ │ │ │ ├── HomeT1Filebrowsing$UpOneLevelListener.class
│ │ │ │ ├── HomeT1Filebrowsing.class
│ │ │ │ ├── HomeT2Bookshelf$Add_classify_click$1.class
│ │ │ │ ├── HomeT2Bookshelf$Add_classify_click$2.class
│ │ │ │ ├── HomeT2Bookshelf$Add_classify_click.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_click.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$1.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$2.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$3$1.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$3$2.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$3.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$4$1.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$4$2.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick$4.class
│ │ │ │ ├── HomeT2Bookshelf$Classify_lv_item_longClick.class
│ │ │ │ ├── HomeT2Bookshelf$openBottomMenuClick.class
│ │ │ │ ├── HomeT2Bookshelf$openClassify_click.class
│ │ │ │ ├── HomeT2Bookshelf.class
│ │ │ │ ├── MainReader$1.class
│ │ │ │ ├── MainReader$2.class
│ │ │ │ ├── MainReader$3.class
│ │ │ │ ├── MainReader$4.class
│ │ │ │ ├── MainReader$5.class
│ │ │ │ ├── MainReader$TitleClickEvent.class
│ │ │ │ ├── MainReader.class
│ │ │ │ ├── MyMenu$1.class
│ │ │ │ ├── MyMenu$MyMenuAdapter$1.class
│ │ │ │ ├── MyMenu$MyMenuAdapter.class
│ │ │ │ ├── MyMenu.class
│ │ │ │ ├── mysettings
│ │ │ │ │ ├── AlarmReceiver.class
│ │ │ │ │ ├── Changpassword$1.class
│ │ │ │ │ ├── Changpassword$2.class
│ │ │ │ │ ├── Changpassword.class
│ │ │ │ │ ├── HelpActivity.class
│ │ │ │ │ ├── Listview.class
│ │ │ │ │ ├── MyAdapter$1.class
│ │ │ │ │ ├── MyAdapter$ViewHolder.class
│ │ │ │ │ ├── MyAdapter.class
│ │ │ │ │ ├── PasswordActivity$1.class
│ │ │ │ │ ├── PasswordActivity$2.class
│ │ │ │ │ ├── PasswordActivity.class
│ │ │ │ │ ├── Remindtime$1$1.class
│ │ │ │ │ ├── Remindtime$1.class
│ │ │ │ │ ├── Remindtime$2.class
│ │ │ │ │ ├── Remindtime.class
│ │ │ │ │ ├── RemoveActivity$1.class
│ │ │ │ │ ├── RemoveActivity$2.class
│ │ │ │ │ └── RemoveActivity.class
│ │ │ │ ├── NeaterBookshelf$CheckAllClick.class
│ │ │ │ ├── NeaterBookshelf$DeleteClick$1.class
│ │ │ │ ├── NeaterBookshelf$DeleteClick$2.class
│ │ │ │ ├── NeaterBookshelf$DeleteClick.class
│ │ │ │ ├── NeaterBookshelf$RemoveClick$1.class
│ │ │ │ ├── NeaterBookshelf$RemoveClick.class
│ │ │ │ ├── NeaterBookshelf$ReturnClick.class
│ │ │ │ ├── NeaterBookshelf.class
│ │ │ │ ├── PageWidget.class
│ │ │ │ ├── Setting$1.class
│ │ │ │ ├── Setting$2.class
│ │ │ │ ├── Setting$3.class
│ │ │ │ ├── Setting$4.class
│ │ │ │ ├── Setting$5.class
│ │ │ │ ├── Setting$6.class
│ │ │ │ ├── Setting$7.class
│ │ │ │ ├── Setting$8.class
│ │ │ │ ├── Setting.class
│ │ │ │ ├── SplashScreen$1.class
│ │ │ │ ├── SplashScreen$2.class
│ │ │ │ ├── SplashScreen$3.class
│ │ │ │ ├── SplashScreen.class
│ │ │ │ ├── TestTest$1.class
│ │ │ │ ├── TestTest$2.class
│ │ │ │ └── TestTest.class
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileReleaseAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-sw720dp-land-v13
│ │ │ │ │ │ │ └── values-sw720dp-land-v13.xml
│ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ └── values-v14
│ │ │ │ │ │ └── values-v14.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-sw720dp-land-v13
│ │ │ │ │ │ │ └── values-sw720dp-land-v13.xml
│ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ └── values-v14
│ │ │ │ │ │ └── values-v14.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── +8y6Kb4VW4qjHHKXn0_LPbOX4ok=
│ │ │ │ └── packageRelease
│ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ ├── file-input-save-data.txt
│ │ │ │ └── zip-cache
│ │ │ │ └── 0jxoxXnE7QXd8uA3d+VLEFixuDw=
│ │ │ ├── incremental-safeguard
│ │ │ │ ├── debug
│ │ │ │ │ └── tag.txt
│ │ │ │ └── release
│ │ │ │ └── tag.txt
│ │ │ ├── manifest
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── manifests
│ │ │ │ └── full
│ │ │ │ ├── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── release
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── pre-dexed
│ │ │ │ ├── debug
│ │ │ │ │ ├── android-support-v13_0a9f57a21c4932a3abd007488848b8da94e6a2eb.jar
│ │ │ │ │ └── debug_1ca71b21e1a26752efc42731c5ee391a3daab480.jar
│ │ │ │ └── release
│ │ │ │ ├── android-support-v13_0a9f57a21c4932a3abd007488848b8da94e6a2eb.jar
│ │ │ │ └── release_7033b7aee057b5f2d3ca4b70cc26f9f4f0b55ce8.jar
│ │ │ ├── res
│ │ │ │ ├── merged
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── anim
│ │ │ │ │ │ │ ├── leftin.xml
│ │ │ │ │ │ │ ├── leftout.xml
│ │ │ │ │ │ │ ├── popup_enter.xml
│ │ │ │ │ │ │ ├── popup_exit.xml
│ │ │ │ │ │ │ ├── rightin.xml
│ │ │ │ │ │ │ └── rightout.xml
│ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ ├── bookshelf_bg.xml
│ │ │ │ │ │ │ ├── checkbox_onoff.xml
│ │ │ │ │ │ │ ├── checkbox_selector1.xml
│ │ │ │ │ │ │ ├── checkbox_selector2.xml
│ │ │ │ │ │ │ ├── classify_lv_item_bg.xml
│ │ │ │ │ │ │ └── menu_reater.xml
│ │ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ │ ├── add_bookmark.png
│ │ │ │ │ │ │ ├── add.png
│ │ │ │ │ │ │ ├── add_size.png
│ │ │ │ │ │ │ ├── all_book.png
│ │ │ │ │ │ │ ├── app.png
│ │ │ │ │ │ │ ├── back_white.png
│ │ │ │ │ │ │ ├── bookmark.png
│ │ │ │ │ │ │ ├── bookshalf_bg.png
│ │ │ │ │ │ │ ├── bookshelf_find.png
│ │ │ │ │ │ │ ├── chapters.png
│ │ │ │ │ │ │ ├── checkbox1_no.png
│ │ │ │ │ │ │ ├── checkbox1_yes.png
│ │ │ │ │ │ │ ├── checkbox2_no.png
│ │ │ │ │ │ │ ├── checkbox2_yes.png
│ │ │ │ │ │ │ ├── checkbox3_no.png
│ │ │ │ │ │ │ ├── checkbox3_yes.png
│ │ │ │ │ │ │ ├── cover1.png
│ │ │ │ │ │ │ ├── cover2.png
│ │ │ │ │ │ │ ├── cover3.png
│ │ │ │ │ │ │ ├── cover4.png
│ │ │ │ │ │ │ ├── cover5.png
│ │ │ │ │ │ │ ├── cut_size.png
│ │ │ │ │ │ │ ├── day1.png
│ │ │ │ │ │ │ ├── dealing.png
│ │ │ │ │ │ │ ├── deal.png
│ │ │ │ │ │ │ ├── dir.png
│ │ │ │ │ │ │ ├── exit.png
│ │ │ │ │ │ │ ├── file_dir.png
│ │ │ │ │ │ │ ├── file_txt.png
│ │ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ │ ├── love.png
│ │ │ │ │ │ │ ├── menu1.png
│ │ │ │ │ │ │ ├── menu_day.png
│ │ │ │ │ │ │ ├── more.png
│ │ │ │ │ │ │ ├── night1.png
│ │ │ │ │ │ │ ├── no_classify.png
│ │ │ │ │ │ │ ├── off1.png
│ │ │ │ │ │ │ ├── on1.png
│ │ │ │ │ │ │ ├── reater_disable.png
│ │ │ │ │ │ │ ├── reater_enable.png
│ │ │ │ │ │ │ ├── reater.png
│ │ │ │ │ │ │ ├── return1.png
│ │ │ │ │ │ │ ├── set.png
│ │ │ │ │ │ │ ├── splash.png
│ │ │ │ │ │ │ ├── time.png
│ │ │ │ │ │ │ └── update.png
│ │ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ │ ├── bangzhu.jpg
│ │ │ │ │ │ │ ├── banzu.jpg
│ │ │ │ │ │ │ ├── fanhui.jpg
│ │ │ │ │ │ │ ├── gengai.jpg
│ │ │ │ │ │ │ ├── mima.jpg
│ │ │ │ │ │ │ ├── shezhi.jpg
│ │ │ │ │ │ │ └── tixin.jpg
│ │ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── about_us.xml
│ │ │ │ │ │ │ ├── alarm.xml
│ │ │ │ │ │ │ ├── bookshelf_grid_item.xml
│ │ │ │ │ │ │ ├── change.xml
│ │ │ │ │ │ │ ├── classify_list_header_item.xml
│ │ │ │ │ │ │ ├── classify_list_item.xml
│ │ │ │ │ │ │ ├── dialog_book_longclick.xml
│ │ │ │ │ │ │ ├── dialog_classify_longclick.xml
│ │ │ │ │ │ │ ├── dialog_clear_paw.xml
│ │ │ │ │ │ │ ├── dialog_delete2.xml
│ │ │ │ │ │ │ ├── dialog_delete.xml
│ │ │ │ │ │ │ ├── dialog_detailed_info.xml
│ │ │ │ │ │ │ ├── dialog_file_longclick.xml
│ │ │ │ │ │ │ ├── dialog_login.xml
│ │ │ │ │ │ │ ├── dialog_remove_list_item.xml
│ │ │ │ │ │ │ ├── dialog_remove_to_classify.xml
│ │ │ │ │ │ │ ├── dialog_rename.xml
│ │ │ │ │ │ │ ├── dialog_set_paw.xml
│ │ │ │ │ │ │ ├── dialog_share.xml
│ │ │ │ │ │ │ ├── filebrowsing_list_item.xml
│ │ │ │ │ │ │ ├── file_row.xml
│ │ │ │ │ │ │ ├── helpview.xml
│ │ │ │ │ │ │ ├── home_t1_filebrowsing.xml
│ │ │ │ │ │ │ ├── home_t2_bookshelf.xml
│ │ │ │ │ │ │ ├── list_item.xml
│ │ │ │ │ │ │ ├── listview.xml
│ │ │ │ │ │ │ ├── main.xml
│ │ │ │ │ │ │ ├── neater_bookshelf_grid_item.xml
│ │ │ │ │ │ │ ├── neater_bookshelf.xml
│ │ │ │ │ │ │ ├── needp.xml
│ │ │ │ │ │ │ ├── password.xml
│ │ │ │ │ │ │ ├── reader_jump.xml
│ │ │ │ │ │ │ ├── remove.xml
│ │ │ │ │ │ │ ├── setting.xml
│ │ │ │ │ │ │ ├── splash_screen.xml
│ │ │ │ │ │ │ ├── submenu.xml
│ │ │ │ │ │ │ └── time.xml
│ │ │ │ │ │ ├── menu
│ │ │ │ │ │ │ ├── home_tabhost.xml
│ │ │ │ │ │ │ └── main.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-sw720dp-land-v13
│ │ │ │ │ │ │ └── values-sw720dp-land-v13.xml
│ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ └── values-v14
│ │ │ │ │ │ └── values-v14.xml
│ │ │ │ │ └── release
│ │ │ │ │ ├── anim
│ │ │ │ │ │ ├── leftin.xml
│ │ │ │ │ │ ├── leftout.xml
│ │ │ │ │ │ ├── popup_enter.xml
│ │ │ │ │ │ ├── popup_exit.xml
│ │ │ │ │ │ ├── rightin.xml
│ │ │ │ │ │ └── rightout.xml
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── bookshelf_bg.xml
│ │ │ │ │ │ ├── checkbox_onoff.xml
│ │ │ │ │ │ ├── checkbox_selector1.xml
│ │ │ │ │ │ ├── checkbox_selector2.xml
│ │ │ │ │ │ ├── classify_lv_item_bg.xml
│ │ │ │ │ │ └── menu_reater.xml
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ ├── add_bookmark.png
│ │ │ │ │ │ ├── add.png
│ │ │ │ │ │ ├── add_size.png
│ │ │ │ │ │ ├── all_book.png
│ │ │ │ │ │ ├── app.png
│ │ │ │ │ │ ├── back_white.png
│ │ │ │ │ │ ├── bookmark.png
│ │ │ │ │ │ ├── bookshalf_bg.png
│ │ │ │ │ │ ├── bookshelf_find.png
│ │ │ │ │ │ ├── chapters.png
│ │ │ │ │ │ ├── checkbox1_no.png
│ │ │ │ │ │ ├── checkbox1_yes.png
│ │ │ │ │ │ ├── checkbox2_no.png
│ │ │ │ │ │ ├── checkbox2_yes.png
│ │ │ │ │ │ ├── checkbox3_no.png
│ │ │ │ │ │ ├── checkbox3_yes.png
│ │ │ │ │ │ ├── cover1.png
│ │ │ │ │ │ ├── cover2.png
│ │ │ │ │ │ ├── cover3.png
│ │ │ │ │ │ ├── cover4.png
│ │ │ │ │ │ ├── cover5.png
│ │ │ │ │ │ ├── cut_size.png
│ │ │ │ │ │ ├── day1.png
│ │ │ │ │ │ ├── dealing.png
│ │ │ │ │ │ ├── deal.png
│ │ │ │ │ │ ├── dir.png
│ │ │ │ │ │ ├── exit.png
│ │ │ │ │ │ ├── file_dir.png
│ │ │ │ │ │ ├── file_txt.png
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ ├── love.png
│ │ │ │ │ │ ├── menu1.png
│ │ │ │ │ │ ├── menu_day.png
│ │ │ │ │ │ ├── more.png
│ │ │ │ │ │ ├── night1.png
│ │ │ │ │ │ ├── no_classify.png
│ │ │ │ │ │ ├── off1.png
│ │ │ │ │ │ ├── on1.png
│ │ │ │ │ │ ├── reater_disable.png
│ │ │ │ │ │ ├── reater_enable.png
│ │ │ │ │ │ ├── reater.png
│ │ │ │ │ │ ├── return1.png
│ │ │ │ │ │ ├── set.png
│ │ │ │ │ │ ├── splash.png
│ │ │ │ │ │ ├── time.png
│ │ │ │ │ │ └── update.png
│ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ ├── bangzhu.jpg
│ │ │ │ │ │ ├── banzu.jpg
│ │ │ │ │ │ ├── fanhui.jpg
│ │ │ │ │ │ ├── gengai.jpg
│ │ │ │ │ │ ├── mima.jpg
│ │ │ │ │ │ ├── shezhi.jpg
│ │ │ │ │ │ └── tixin.jpg
│ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── about_us.xml
│ │ │ │ │ │ ├── alarm.xml
│ │ │ │ │ │ ├── bookshelf_grid_item.xml
│ │ │ │ │ │ ├── change.xml
│ │ │ │ │ │ ├── classify_list_header_item.xml
│ │ │ │ │ │ ├── classify_list_item.xml
│ │ │ │ │ │ ├── dialog_book_longclick.xml
│ │ │ │ │ │ ├── dialog_classify_longclick.xml
│ │ │ │ │ │ ├── dialog_clear_paw.xml
│ │ │ │ │ │ ├── dialog_delete2.xml
│ │ │ │ │ │ ├── dialog_delete.xml
│ │ │ │ │ │ ├── dialog_detailed_info.xml
│ │ │ │ │ │ ├── dialog_file_longclick.xml
│ │ │ │ │ │ ├── dialog_login.xml
│ │ │ │ │ │ ├── dialog_remove_list_item.xml
│ │ │ │ │ │ ├── dialog_remove_to_classify.xml
│ │ │ │ │ │ ├── dialog_rename.xml
│ │ │ │ │ │ ├── dialog_set_paw.xml
│ │ │ │ │ │ ├── dialog_share.xml
│ │ │ │ │ │ ├── filebrowsing_list_item.xml
│ │ │ │ │ │ ├── file_row.xml
│ │ │ │ │ │ ├── helpview.xml
│ │ │ │ │ │ ├── home_t1_filebrowsing.xml
│ │ │ │ │ │ ├── home_t2_bookshelf.xml
│ │ │ │ │ │ ├── list_item.xml
│ │ │ │ │ │ ├── listview.xml
│ │ │ │ │ │ ├── main.xml
│ │ │ │ │ │ ├── neater_bookshelf_grid_item.xml
│ │ │ │ │ │ ├── neater_bookshelf.xml
│ │ │ │ │ │ ├── needp.xml
│ │ │ │ │ │ ├── password.xml
│ │ │ │ │ │ ├── reader_jump.xml
│ │ │ │ │ │ ├── remove.xml
│ │ │ │ │ │ ├── setting.xml
│ │ │ │ │ │ ├── splash_screen.xml
│ │ │ │ │ │ ├── submenu.xml
│ │ │ │ │ │ └── time.xml
│ │ │ │ │ ├── menu
│ │ │ │ │ │ ├── home_tabhost.xml
│ │ │ │ │ │ └── main.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-sw720dp-land-v13
│ │ │ │ │ │ └── values-sw720dp-land-v13.xml
│ │ │ │ │ ├── values-v11
│ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ └── values-v14
│ │ │ │ │ └── values-v14.xml
│ │ │ │ ├── resources-debug-androidTest.ap_
│ │ │ │ ├── resources-debug.ap_
│ │ │ │ └── resources-release.ap_
│ │ │ └── transforms
│ │ │ └── dex
│ │ │ ├── debug
│ │ │ │ └── folders
│ │ │ │ └── 1000
│ │ │ │ └── 1f
│ │ │ │ └── main
│ │ │ │ └── classes.dex
│ │ │ └── release
│ │ │ └── folders
│ │ │ └── 1000
│ │ │ └── 1f
│ │ │ └── main
│ │ │ └── classes.dex
│ │ └── outputs
│ │ ├── apk
│ │ │ └── app-debug.apk
│ │ ├── lint-results-release-fatal.html
│ │ ├── lint-results-release-fatal.xml
│ │ └── logs
│ │ ├── manifest-merger-debug-report.txt
│ │ └── manifest-merger-release-report.txt
│ ├── build.gradle
│ ├── libs
│ │ └── android-support-v13.jar
│ └── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ └── horizon
│ │ ├── adapter
│ │ │ ├── BookshelfGVAdapter.java
│ │ │ ├── FilebrowsingLVAdapter.java
│ │ │ └── NeaterGVAdapter.java
│ │ ├── dao
│ │ │ ├── BookInfoDao.java
│ │ │ ├── ConfigDao.java
│ │ │ └── DBOpenHelper.java
│ │ ├── global
│ │ │ ├── PageTurnType.java
│ │ │ └── ScreenOrientation.java
│ │ ├── model
│ │ │ ├── Book.java
│ │ │ ├── BookLabel.java
│ │ │ └── Chapter.java
│ │ └── ui
│ │ ├── AboutUs.java
│ │ ├── BookChapter.java
│ │ ├── BookMark.java
│ │ ├── BookPageFactory.java
│ │ ├── BookshelfViewGroup.java
│ │ ├── CutChapters.java
│ │ ├── HomeT1Filebrowsing.java
│ │ ├── HomeT2Bookshelf.java
│ │ ├── MainReader.java
│ │ ├── MyMenu.java
│ │ ├── mysettings
│ │ │ ├── AlarmReceiver.java
│ │ │ ├── Changpassword.java
│ │ │ ├── HelpActivity.java
│ │ │ ├── Listview.java
│ │ │ ├── MyAdapter.java
│ │ │ ├── PasswordActivity.java
│ │ │ ├── Remindtime.java
│ │ │ └── RemoveActivity.java
│ │ ├── NeaterBookshelf.java
│ │ ├── PageWidget.java
│ │ ├── Setting.java
│ │ ├── SplashScreen.java
│ │ └── TestTest.java
│ └── res
│ ├── anim
│ │ ├── leftin.xml
│ │ ├── leftout.xml
│ │ ├── popup_enter.xml
│ │ ├── popup_exit.xml
│ │ ├── rightin.xml
│ │ └── rightout.xml
│ ├── drawable
│ │ ├── bookshelf_bg.xml
│ │ ├── checkbox_onoff.xml
│ │ ├── checkbox_selector1.xml
│ │ ├── checkbox_selector2.xml
│ │ ├── classify_lv_item_bg.xml
│ │ └── menu_reater.xml
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ ├── add_bookmark.png
│ │ ├── add.png
│ │ ├── add_size.png
│ │ ├── all_book.png
│ │ ├── app.png
│ │ ├── back_white.png
│ │ ├── bangzhu.jpg
│ │ ├── banzu.jpg
│ │ ├── bookmark.png
│ │ ├── bookshalf_bg.png
│ │ ├── bookshelf_find.png
│ │ ├── chapters.png
│ │ ├── checkbox1_no.png
│ │ ├── checkbox1_yes.png
│ │ ├── checkbox2_no.png
│ │ ├── checkbox2_yes.png
│ │ ├── checkbox3_no.png
│ │ ├── checkbox3_yes.png
│ │ ├── cover1.png
│ │ ├── cover2.png
│ │ ├── cover3.png
│ │ ├── cover4.png
│ │ ├── cover5.png
│ │ ├── cut_size.png
│ │ ├── day1.png
│ │ ├── dealing.png
│ │ ├── deal.png
│ │ ├── dir.png
│ │ ├── exit.png
│ │ ├── fanhui.jpg
│ │ ├── file_dir.png
│ │ ├── file_txt.png
│ │ ├── gengai.jpg
│ │ ├── ic_launcher.png
│ │ ├── love.png
│ │ ├── menu1.png
│ │ ├── menu_day.png
│ │ ├── mima.jpg
│ │ ├── more.png
│ │ ├── night1.png
│ │ ├── no_classify.png
│ │ ├── off1.png
│ │ ├── on1.png
│ │ ├── reater_disable.png
│ │ ├── reater_enable.png
│ │ ├── reater.png
│ │ ├── return1.png
│ │ ├── set.png
│ │ ├── shezhi.jpg
│ │ ├── splash.png
│ │ ├── time.png
│ │ ├── tixin.jpg
│ │ └── update.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ ├── about_us.xml
│ │ ├── alarm.xml
│ │ ├── bookshelf_grid_item.xml
│ │ ├── change.xml
│ │ ├── classify_list_header_item.xml
│ │ ├── classify_list_item.xml
│ │ ├── dialog_book_longclick.xml
│ │ ├── dialog_classify_longclick.xml
│ │ ├── dialog_clear_paw.xml
│ │ ├── dialog_delete2.xml
│ │ ├── dialog_delete.xml
│ │ ├── dialog_detailed_info.xml
│ │ ├── dialog_file_longclick.xml
│ │ ├── dialog_login.xml
│ │ ├── dialog_remove_list_item.xml
│ │ ├── dialog_remove_to_classify.xml
│ │ ├── dialog_rename.xml
│ │ ├── dialog_set_paw.xml
│ │ ├── dialog_share.xml
│ │ ├── filebrowsing_list_item.xml
│ │ ├── file_row.xml
│ │ ├── helpview.xml
│ │ ├── home_t1_filebrowsing.xml
│ │ ├── home_t2_bookshelf.xml
│ │ ├── list_item.xml
│ │ ├── listview.xml
│ │ ├── main.xml
│ │ ├── neater_bookshelf_grid_item.xml
│ │ ├── neater_bookshelf.xml
│ │ ├── needp.xml
│ │ ├── password.xml
│ │ ├── reader_jump.xml
│ │ ├── remove.xml
│ │ ├── setting.xml
│ │ ├── splash_screen.xml
│ │ ├── submenu.xml
│ │ └── time.xml
│ ├── menu
│ │ ├── home_tabhost.xml
│ │ └── main.xml
│ ├── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── mymenu.xml
│ │ ├── popup_animation.xml
│ │ ├── strings.xml
│ │ ├── styles.xml
│ │ └── theme.xml
│ ├── values-sw600dp
│ │ └── dimens.xml
│ ├── values-sw720dp-land
│ │ └── dimens.xml
│ ├── values-v11
│ │ └── styles.xml
│ └── values-v14
│ └── styles.xml
├── build
│ ├── generated
│ │ └── mockable-android-17.jar
│ └── intermediates
│ └── dex-cache
│ └── cache.xml
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── Horizon.iml
├── import-summary.txt
├── local.properties
└── settings.gradle
169 directories, 756 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论