Android新闻应用程序开发实践

新闻应用项目地址:git clone https://github.com/hjzf/news.git

项目描述:一个面向Android开发基础学习阶段的新闻App实战项目。

开发思路:

1. 设计缺陷:只能显示一条特定新闻(写在布局文件中的那条)。

解决方案:使用RecyclerView代替复杂的ScrollView-LinearLayout-include嵌套结构。

- 之前的实现方法:ScrollView嵌套LinearLayout

- 现在的实现方法:RecyclerView

kotlin

newsRecyclerView.layoutManager = LinearLayoutManager(this)

newsRecyclerView.adapter = MyAdapter(newsList)

2. 设计缺陷:新闻数据硬编码在Kotlin代码中。

解决方案:调用聚合数据提供的免费新闻API。

开发结果:项目展示了如何使用RecyclerView优化界面布局,并通过调用外部API获取动态新闻数据。

zip
news-master.zip 预估大小:68个文件
folder
news-master 文件夹
file
.gitignore 225B
folder
gradle 文件夹
folder
wrapper 文件夹
file
gradle-wrapper.jar 53KB
file
gradle-wrapper.properties 230B
file
README.md 7KB
file
build.gradle 642B
folder
README.assets 文件夹
file
test_1.png 67KB
file
test.png 74KB
file
gradlew.bat 2KB
file
gradlew 5KB
folder
app 文件夹
file
.gitignore 6B
file
build.gradle 2KB
file
proguard-rules.pro 750B
folder
src 文件夹
folder
main 文件夹
file
AndroidManifest.xml 1KB
folder
java 文件夹
folder
com 文件夹
folder
app 文件夹
folder
custom 文件夹
file
NewsViewPager.kt 594B
file
NestedScrollWebView.kt 5KB
file
NoScrollViewPager.kt 855B
folder
model 文件夹
file
Model.kt 1008B
folder
ui 文件夹
folder
adapter 文件夹
file
NewsAdapter.kt 5KB
folder
fragment 文件夹
file
VideoFragment.kt 5KB
file
HomeFragment.kt 4KB
file
UserFragment.kt 1KB
file
NewsFragment.kt 8KB
folder
activity 文件夹
file
MainActivity.kt 2KB
file
SearchActivity.kt 1KB
file
DetailActivity.kt 2KB
file
NewsApplication.kt 795B
folder
util 文件夹
file
ToastUtil.kt 185B
file
NetWorkUtil.kt 1KB
folder
res 文件夹
folder
values 文件夹
file
colors.xml 576B
file
themes.xml 820B
file
strings.xml 74B
folder
layout 文件夹
file
activity_main.xml 1KB
file
news_item_three_images.xml 4KB
file
fragment_user.xml 2KB
file
fragment_home.xml 4KB
file
fragment_news.xml 749B
file
news_item_one_image.xml 2KB
file
fragment_video.xml 4KB
file
activity_search.xml 5KB
file
activity_detail.xml 2KB
folder
xml 文件夹
file
network_security_config.xml 144B
folder
values-night 文件夹
file
themes.xml 826B
folder
drawable 文件夹
file
text_cursor_drawable.xml 275B
file
app_icon.xml 8KB
file
ic_email.xml 775B
file
news_image.png 354KB
file
ic_full_screen.xml 708B
file
ic_user.xml 1KB
file
ic_home.xml 827B
file
ic_video.xml 726B
file
ic_search.xml 678B
folder
menu 文件夹
file
home_tool_bar_menu.xml 600B
file
bottom_nav_menu.xml 531B
file
detail_tool_bar_menu.xml 338B
folder
values-v21 文件夹
file
themes.xml 988B
folder
assets 文件夹
file
litepal.xml 239B
file
底部导航栏设计.vsdx 418KB
file
gradle.properties 1KB
folder
.idea 文件夹
file
.gitignore 47B
file
vcs.xml 167B
file
deploymentTargetDropDown.xml 515B
file
misc.xml 3KB
file
jarRepositories.xml 1KB
file
compiler.xml 169B
file
gradle.xml 793B
folder
codeStyles 文件夹
file
Project.xml 4KB
file
codeStyleConfig.xml 142B
file
settings.gradle 40B
...
zip 文件大小:997.12KB