This is an old revision of the document!
Android Developer Interview
请用Android Studio 以 “Java” 编码方式完成以下题目。请尽量少用第三方库。
| 时限 | 1.5小时 |
|---|---|
| 提交方法 | 请要把相关的.java和.xml文件等压缩后电邮代码至 hr@questwork.com。不要把其他脚手架文件压缩在内。 |
目标
- 提供APP主页
外观
功能
- 上方显示banner图
- 主页按序(order)排列图符
- 按图符后以 WebView 跳转至http://cn.questwork.com
数据结构 Data Structure
数据和图符从网上撷取。
https://s3.ap-east-1.amazonaws.com/attendance.app.questwork.com/congress_app/feature.list.json
例子:
[
...
{
"iconUrl": "http://attendance.app.questwork.com/congress_app/icons/website.png",
"label": "Website",
"action": "Website",
"order": 16,
"active": true
},
{
"iconUrl": "http://attendance.app.questwork.com/congress_app/icons/filter_96.png",
"label": "Filter",
"action": "Filter",
"order": 17,
"active": false
},
...
| 属性 | 解释 |
|---|---|
| iconUrl | 图符网址 |
| label | 文字标志 |
| order | 排序 |
| active | 有效,主页只显示为true的 |
| targetUrl | 本次习作不用 |
| action | 本次习作不用 |
评分准则
- 组件设计
- 编码整洁
- 外覌
