2017Google Study Jams之1A对View和ViewGroup的认识

此次活动的举办方:Google Study Jams活动官网

我的博客(同步此次活动笔记):CSDN博客我的简书

Google Developers

一、1A 认识View的笔记

1、初识Android

  • Android是一款开源的基于Linux的操作系统,主要用于移动设备(手机和平板),也用于汽车,家电等设备上来进入物联网时代。
  • 开发的硬件设备:Windows,Mac等
  • 开发的操作系统:Windows,Linux,Ubuntu等
  • 测试设备:Android手机、平板或其他Android系统设备
  • 集成开发环境:IDE(Android studio(推荐), Eclipse(Google目前不再维护更新))
  • Android Studio:Android Studio 是一个Android集成开发工具,基于IntelliJ IDEA。Android Studio 提供了集成的 Android 开发工具用于开发和调试。
  • 国内比较好的一个中文镜像网站

2、认识Android的View(视图)

  • View:View是屏幕上的一个矩形区域,是布局组件的基本组成元素。
  • Layout:所有的View视图拼起来就是屏幕上的Layout。
  • View有TextView(文本视图),ImageView(图像视图), Button(按钮)等。

3、认识XML

  • 使用Android studio来编写并预览
  • 编写屏幕上的layout,layout由之前认识的View组成
  • XML:Extensible Markup Language 可拓展标记语言,用来编写布局Layout
  • View的命名规则:采用驼峰规则(Camel-Case),也就是将每个单词的首字母大写,中间不加任何符号和空格
  • 标签:双标签或者自闭标签(例:<TextView> </TextView>或<TextView />)
  • 属性:“=”左边是属性名,右变属性值,每个属性都有默认值
  • 一个在线的视图预览工具

4、开启View的第一个控件:TextView(文本视图)

<TextView
        android:id="@+id/title_text_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/my_photos"
        android:textAppearance="?android:textAppearanceLarge"
        android:textColor="#4689C8"
        android:textStyle="bold" />
  • 单位:
  • dp:用于设置控件的宽高 (与手机像素密度无关)
  • sp:用于设置文本字体的大小 (与手机像素密度无关)
  • px :与手机像素有关(不推荐作为控件的宽高)
  • wrap_content:根据内容的大小决定控件的大小
  • android:textAppearance="?android:textAppearanceLarge" 可以设置系统的属性,采用大中小字体样式
  • 颜色:引用系统或者本地资源(@color/white)或者采用16进制“#FFFFFF”
  • Common Android Views 常用基础控件模板供参考使用

5、ImageView (图像视图)

<ImageView
      android:id="@+id/photo_image_view"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:src="@drawable/icon"
      android:scaleType="centerCrop"/>
  • android:src:加载本地图片资源(Android studio对图片资源有一定的要求,建议使用.png的文件资源)
  • android:scaleType:对图片进行一定的裁剪,缩放和位置摆放的操作

6、通过看Android开发文档帮助开发

二、1B 认识ViewGroup的笔记

1、认识ViewGroup

  • ViewGroup相当于一个放置View的容器,并且我们在写布局xml的时候,会告诉容器(凡是以layout为开头的属性,都是为用于告诉容器的),例如宽度(layout_width)、高度(layout_height)、对齐方式(layout_gravity)等;当然还有后面要说的layout_margin、layout_padding等;所以一个ViewGroup是一个可以包含子View的容器,是布局文件和View容器的基类。

2、初识布局(Layout)-线性布局(LinearLayout)

  • 水平布局 horizontal
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
     <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="按钮1"/>   
     <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="按钮2"/>   
     <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="按钮3"/>   
</LinearLayout>
  • 垂直布局 horizontal
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
     <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="按钮1"/>   
     <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="按钮2"/>   
     <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="按钮3"/>   
</LinearLayout>
  • 两种方式效果对比
水平布局
垂直布局
  • 概念: LinearLayout是线性布局控件,它包含的子控件将以横向或竖向的方式排列。

  • 属性:android:gravity:指定如何在该对象中放置此对象的内容(x/y坐标值)
    android:orientation:设置它内容的对其方向(横向/竖向)
    ps:gravity :这个英文单词是重心的意思,在这里就表示停靠位置的意思。

  • 当 android:orientation="vertical" 时, 只有水平方向的设置才起作用,垂直方向的设置不起作用。即:left,right,center_horizontal 是生效的。

  • 当 android:orientation="horizontal" 时, 只有垂直方向的设置才起作用,水平方向的设置不起作用。即:top,bottom,center_vertical 是生效的。

  • 延伸:android:layout_gravity 和 android:gravity 的区别
    从名字上可以看到,android:gravity是对元素本身说的,元素本身的文本显示在什么地方靠着换个属性设置,不过不设置默认是在左侧的。
    android:layout_gravity是相对与它的父元素说的,说明元素显示在父元素的什么位置。 比如说button: android:layout_gravity 表示按钮在界面上的位置。 android:gravity表示button上的字在button上的位置。

  • 可选值 :
    这两个属性可选的值有:top、bottom、left、right、center_vertical、fill_vertical、center_horizontal、fill_horizontal、center、fill、clip_vertical。

3、相对布局(RelativeLayout)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">
    <ImageView
        android:id="@+id/image_center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@mipmap/ic_launcher"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@id/image_center"
        android:text="我在左边"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_above="@id/image_center"
        android:text="我在上边"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@id/image_center"
        android:text="我在右边"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/image_center"
        android:text="我在下边"/>
</RelativeLayout>
  • 概念:RelativeLayout是一个允许子视图相对于其他兄弟视图或是父视图显示的视图组(通过ID指定)。每个视图的位置能够指定它相对于兄弟(比如在其他视图的左边或是下边)或是父视图(这里是指相对布局容器,比如底部对齐、中间偏左)的位置。
  • 属性:
  • android:layout_toLeftOf:位于相对控件的左方
  • android:layout_above:位于相对控件的上方
  • android:layout_toRightOf:位于相对控件的右方
  • android:layout_below:位于相对控件的下方
  • android:layout_centerVertical:在父布局中垂直居中
  • android:layout_centerHorizontal:在父布局中水平居中
  • android:layout_centerInParent:在父布局正中
相对布局效果图

4、优化布局-设定布局的内外边距(Paddding、Margin)

  • 简单概述:
  • android:layout_margin就是设置view的上下左右边框的额外空间
  • android:padding是设置内容相对view的边框的距离。
    通俗来说,一个设置内边距,一个设置外边距。
  • ps:在LinearLayout、RelativeLayout、TableLayout中,这2个属性都是设置都是有效的
    在FrameLayout中,android:layout_margin是无效的,因为FrameLayout里面的元素都是从左上角开始绘制的在AbsoluteLayout中,没有android:layout_margin属性。
内外边距说明

OK,关于View和ViewGroup的认识就记到这里了。感觉各位的阅读!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容