首页 > 系统 > Android > 正文

初始Android

2019-11-06 09:43:33
字体:
来源:转载
供稿:网友
一、初步认识View       View是布局组件的基本组成元素,包括TextView,ImageView,Button等。二、xml       a、使用Android Studio进行编写。       b、View命名规则:驼峰规则,即每个单词首字母必须大写,且中间无任何符号与空格。       c、标签:双标签或自闭标签(例:<TextView></TextView>或<TextView.../>(注意有开就有关))       d、属性:“=”左边是属性名,右边是属性值,每个属性都有默认值,不做改变即为默认值。三、控件      <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" />       a、属性值wrap_content表示根据内容大小决定控件的大小,也可写成“xxdp”(dp:用于设置控件的宽高)或“match_parent”。       b、android:textSize的属性值有两种设置方法:             1:“xxsp”,具体文本字体大小可登陆https://developer.android.google.cn/index.html(翻墙后可登陆https://developer.android.com/index.html)             2:当不知如何设置具体的文本字体大小时,可采用一般通用的大中小字体,即:android:textAppearance="?android:textAppearanceLarge"、             android:textAppearance="?android:textAppearanceMedium"、android:textAppearance="?android=textAppearanceSmall".       c、颜色:android:textColor="@android:color/black"或采用进制"#FFFFFF"       d、android:src="@drawble/ocean"加载图片资源。       e、android:scaleType="centerCrop"对图片进行一定的裁剪,缩放和对位置摆放的操作。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表