{"id":13452720,"url":"https://github.com/eoecn/android-app","last_synced_at":"2025-05-15T20:05:35.681Z","repository":{"id":6590171,"uuid":"7832859","full_name":"eoecn/android-app","owner":"eoecn","description":"eoe的Android客户端源码","archived":false,"fork":false,"pushed_at":"2015-10-06T02:34:12.000Z","size":3953,"stargazers_count":1183,"open_issues_count":34,"forks_count":1165,"subscribers_count":209,"default_branch":"master","last_synced_at":"2025-04-08T02:41:15.443Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eoecn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-01-26T03:21:23.000Z","updated_at":"2025-03-17T17:46:40.000Z","dependencies_parsed_at":"2022-09-15T16:41:59.982Z","dependency_job_id":null,"html_url":"https://github.com/eoecn/android-app","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eoecn%2Fandroid-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eoecn%2Fandroid-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eoecn%2Fandroid-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eoecn%2Fandroid-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eoecn","download_url":"https://codeload.github.com/eoecn/android-app/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254414499,"owners_count":22067272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T08:00:21.296Z","updated_at":"2025-05-15T20:05:30.589Z","avatar_url":"https://github.com/eoecn.png","language":"Java","readme":"本项目采用 GPL 授权协议，欢迎大家在这个基础上进行改进，并与大家分享。\r\n\r\n如您感觉本项目中有不妥之处或者有不爽的地方，欢迎提交问题或更改方案，项目小组会\r\n及时的对您提交的修改给予反馈。希望能为开发者提供一款开源好用的Android版客户端产品。\r\n一款好产品需要大家共同努力，大家共勉！\r\n\r\n# **eoe社区 Android 客户端项目简析** #\r\n\r\n*注：本文假设你已经有Android开发环境*\r\n\r\n本文以eclipse为例\u003cbr\u003e\r\n启动Eclipse，导入Android客户端项目，请确保你当前的Android SDK是最新版。\r\n如果编译出错，请修改项目根目录下的 project.properties 文件。\r\n推荐使用Android 4.0 以上版本的SDK：\u003cbr\u003e\r\n\r\ntarget=android-14\r\n## **一、工程目录结构** ##\r\n根目录\u003cbr\u003e\r\n\u003e├ source  \u003cbr\u003e \r\n\u003e├ LICENCE.txt \u003cbr\u003e\r\n\u003e├ README.md \u003cbr\u003e\r\n\r\n目录简要解释\u003cbr\u003e\r\n根目录\u003cbr\u003e\r\n\u003e├ source --源代码 \u003cbr\u003e \r\n\u003e├ LICENCE.txt --开源协议 \u003cbr\u003e\r\n\u003e├ README.md --项目帮助及项目信息 \u003cbr\u003e\r\n\r\n## **二、源代码目录结构** ##\r\nsource\u003cbr\u003e\r\n\u003e├ src  \u003cbr\u003e \r\n\u003e├ libs \u003cbr\u003e\r\n\u003e├ res \u003cbr\u003e\r\n\u003e├ AndroidManifest.xml \u003cbr\u003e\r\n\u003e├ proguard-project.txt \u003cbr\u003e\r\n\u003e└ project.properties \u003cbr\u003e\r\n\r\n**1、src目录** \u003cbr\u003e\r\nsrc目录用于存放工程的包及java源码文件。\r\n\r\n下面是src目录的子目录：\r\n\r\n\u003e src \u003cbr\u003e\r\n\r\n\u003e├ cn.eoe.app --存放程序全局性类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.adapter --存放适配器的实现类的包 \u003cbr\u003e\r\n\u003e├ cn.eoe.app.adapter.base --存放适配器基类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.biz --存放ＤＡＯ类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.config －－存放常量，配置和api接口等类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.db --关于sqlite操作相关的类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.db.biz --详细的增删改查类的包，暂时仅有一个类\u003cbr\u003e\r\n\u003e├ cn.eoe.app.entity --实体类包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.entity.base --实体类基类包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.https --网络访问相关类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.indicator --导航相关的类包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.slidingmenu --滑动菜单相关类包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.ui --界面相关的包，activity的类\u003cbr\u003e\r\n\u003e├ cn.eoe.app.ui.base --activity相关的基类包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.utils --工具类包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.view --Fragment相关类的包\u003cbr\u003e\r\n\u003e├ cn.eoe.app.widget --自定义view组件包\u003cbr\u003e\r\n\u003e\r\n\u003e├ com.google.zxing.camera --第三方定义，控制摄像头包\u003cbr\u003e\r\n\u003e├ com.google.zxing.decoding -- 二维码图像解码包\u003cbr\u003e\r\n\u003e├ com.google.zxing.view -- 自定义View，控制拍摄取景框和动画等\u003cbr\u003e\r\n\r\n \r\n**2、libs目录** \u003cbr\u003e\r\nlibs目录用于存放项目引用的第三方jar包。\r\n\r\nlibs目录里的jar包文件：\r\n\r\nlibs\r\n\u003e├  android-support-v4.jar --v4兼容包\u003cbr\u003e\r\n\u003e├ jackson-all-1.9.2.jar --解析json的包\u003cbr\u003e\r\n\u003e├ umeng_sdk.jar --友盟的sdk\u003cbr\u003e\r\n\u003e├ zxing-1.6.jar --二维码处理的包\u003cbr\u003e\r\n\r\n**3、res目录** \u003cbr\u003e\r\nres目录存放工程用到的图片、布局、样式等资源文件。\u003cbr\u003e\r\nres目录的子目录：\u003cbr\u003e\r\n\r\nres \u003cbr\u003e\r\n\u003e├ anim \u003cbr\u003e\r\n\u003e├ color \u003cbr\u003e\r\n\u003e├ drawable \u003cbr\u003e\r\n\u003e├ drawable-hdpi \u003cbr\u003e\r\n\u003e├ drawable-ldpi \u003cbr\u003e\r\n\u003e├ drawable-mdpi \u003cbr\u003e\r\n\u003e├ drawable-xhdpi \u003cbr\u003e\r\n\u003e├ interpolator\u003cbr\u003e\r\n\u003e├ layout \u003cbr\u003e\r\n\u003e├ menu \u003cbr\u003e\r\n\u003e├ raw \u003cbr\u003e\r\n\u003e├ values \u003cbr\u003e\r\n\u003e└ values-zh \u003cbr\u003e\r\n\r\n**4、AndroidManifest.xml**\u003cbr\u003e\r\nAndroidManifest.xml用于设置应用程序的版本、主题、用户权限及注册Activity等组件及其他配置。\r\n\r\n## **三、程序功能流程** ##\r\n**1、APP启动流程**\r\n\r\nAndroidManifest.xml注册的启动Activity是\"cn.eoe.app.ui.SplashActivity\"，然后进入到主界面，对应的\r\n\r\nActivity是“cn.eoe.app.ui.MainActivity”\r\n\r\n\r\n**2.程序功能**\u003cbr\u003e\r\n (1)社区精选\u003cbr\u003e\r\n (2)新闻资讯\u003cbr\u003e\r\n (3)学习教程\u003cbr\u003e\r\n (4)社区博客\u003cbr\u003e\r\n\r\n\r\n \r\n\r\n# **参与贡献** #\r\nandroid-app项目设置2-3名管理者，目前的管理者是\r\n- cuijie(ghlimbrother)\r\n- com360\r\n- Iceskysl\r\n\r\n每个人都可以fork一份代码，在自己的分支上修改，完成相关的功能后可以给 `eoecn/android-app` 发起一个pull request,管理者收到pull request后会评估合并提交的功能和代码\r\n\r\nps. \r\n详细的协作步骤请参考Iceskysl写的[基于Github参与eoe的开源项目指南](http://my.eoe.cn/iceskysl/archive/3195.html)文章\r\n \r\n","funding_links":[],"categories":["Java","开源项目学习"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feoecn%2Fandroid-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feoecn%2Fandroid-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feoecn%2Fandroid-app/lists"}