2017Google Study Jams系列之实践1C-实践和脑子都是好东西

@极简主义患者/社交控/伪技术宅/沉迷幻想不能自拔的文艺少年
不定期更新的文字平台:微博

2017Google Study Jams系列之实践1C-实践和脑子都是好东西_第1张图片

1.安装Android Sutdio

  • 安装Java Development Kit(JDK,JAVA开发工具包)

JDK可以让你的电脑读取并运行Java语言
论坛视频缺省了JDK的安装,简单以Windows系统过一下,小白可直接百度 "JDK安装及环境配置",按照百度经验里面的教程一步一步来即可

- 验证是否已安装JDK  
win+r->输入cmd->输入`java -version`  
如果显示了版本为8&8以上,就可以直接跳过去安装AS了,否则the next
- 下载JDK
到Oracle官网找到JDK 8 for Windowsx64下载即可
- 再次验证
安装完成后要按照第一步再验证看是否安装成功
  • 安装Android Studio(工作环境)
    大家可以按照视频里说的去官网下载安装,但是似乎AS中文社区自带代理,下载速度很快也基本不会遇到因为墙而发生的古怪问题,方法提供给大家:
    • 百度搜索"Android Studio中文社区"进入首页或点击Android Studio 中文社区(官网)
    • 下拉看到"选择其他平台",在表格里面点击 android-studio-bundle-145.3537739-windows.exe 包含 Android SDK (推荐) 进行下载

2.茶休挑战

  • If I want to show a picture on my phone, what XML element should I use? ImageView
  • android:layout_width,android:test,android:src are all examples of what? attribute
  • Write the sentence "I like practice sets the best". ILikePracticeSetsTheBest
  • RelativeLayout and LinearLayout are known as what? ViewGroup
  • I always need to __ and __ my tags. open close
  • What are the names of the two instructors? Katherine and Kunal
  • Which line has an XML error on it? 21
  • What is the width of the TextView? 350dp
  • Complete the code to position the button.
    android:layout_alignParentBottom="true" android:layout_centerHorizontal="true"
  • Assu,e you are using the XML to the left and you have a screen that is 600dp tall. What is the height of the "Chai Tea" TextView? 100dp
  • 最终为题:Who am I making this cup of coffee for?
    每道题答对后会得到一个线索,十个线索连起来是一句话,Who is the production lead look on the materials webpage 进入这个页面按提示发现答案为Kagure Kabue

3.Hello World!(Version 2.2.3)

安装完之后我们就一起来开始我们的第一个上手项目吧,第一是熟悉一些IDE的基本操作,第二是巩固我们第一节课学习的东西

  • 打开Android Studio,点击"Start a new Android Studio Project"按照视频讲解新建项目
  • 一张图快速了解AS界面


    2017Google Study Jams系列之实践1C-实践和脑子都是好东西_第2张图片
    快速了解

4.创建生日贺卡应用

  • 基本步骤
    • 使用和选择正确的布局和视图(LinearLayout || RelativeLayout)
    • 在屏幕上对这些试图进行模拟定位,确定视图的位置属性(layout_width/layout_height/layout_alignParentRiht/layout_alignParentBottom)
    • 为视图添加样式属性(字体/大小/颜色/图片样式/边距)
      • 字体:fontFamily
      • 大小:textSize
      • 颜色:textColor
      • 图片:layout_width&layout_height="match_parent" +scale="centerCrop"
      • 边距:layout_margin || padding
  • 自制生日卡片
    按照视频中的基本步骤进行即可制作一个简单的小卡片
    • 献上丑作:


      2017Google Study Jams系列之实践1C-实践和脑子都是好东西_第3张图片
      预览界面:Galaxy Nexus
    • 源码:


    

    

    

    

    

你可能感兴趣的:(2017Google Study Jams系列之实践1C-实践和脑子都是好东西)