-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
能不能简单介绍一下代码结构 #693
Comments
你想加什么功能 |
package ceui.lisa.xxxxxx; 这个包里面的是2019年的初版代码,也是老的UI所用的代码,多个页面就是 多个activity。 package ceui.pixiv.xxxxxx; 这个包里面的,是最新的代码,以后会在这里面加功能,这也是V5.0最新的UI所用的代码, package ceui.loxia.xxxxxx; 这个包是从老代码迁移到新代码的buffer,最终会被挪到 ”package ceui.pixiv.xxxxxx“ 里面。 所以代码的重点应该是在 package ceui.pixiv.xxxxxx 里面。 比如我要实现一个”用户创建的作品“ 列表,代码是: class UserCreatedIllustsFragment : PixivFragment(R.layout.fragment_pixiv_list) {
} 主要的数据请求和分页逻辑都在 DataSource 里面, |
有一说一,挺乱的,比如相当多的界面都是在ceui.lisa.activities.TemplateActivity通过intent的dataType的值判断应该怎么渲染 |
原来都5.0了吗 |
TemplateActivity 这个是属于package ceui.lisa.xxxxxx; 这个包里面的,会被删掉。 |
Acknowledgements / 确认事项
What feature should be added? / 需要加上什么功能
如题,看代码有点无从下手的感觉,git clone下来不太像是一般的android项目
Official support / 官方支持情况
Is this feature supported by any other third-party pixiv app? / 第三方App是否支持
No response
Any other information can be help? / 其它信息
No response
The text was updated successfully, but these errors were encountered: