首页 > 系统 > Android > 正文

Android开发笔记 今天学到的一些属性

2020-04-11 12:43:33
字体:
来源:转载
供稿:网友
1.最后程序打包的时候,res文件夹中的文件只有用到的时候才会打包进去,而assets文件夹中的文件无论是否用到都要打包进去
2.安卓主要依靠xml文件来布局,否则textView多的时候布局起来会比较混乱
3.android:singleLine属性为true表示文本在一行显示
android:ellipsize属性:设置当文本过长时该如何显示(显示省略号)start、end、middle分别设置省略号的位置,marquee表示以跑马灯的形式展示
android:autoLink=“web/email/phone/all”设置超链
android:focusable=“true/false”是否可以获取焦点
ndroid:focusableInTouchMode="true" 在触摸的模式下获得焦点

4.控件:

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>默认是要聚焦的,解决方法是在它前面添加一个edittext控件,宽和高设为0,
android:maxLength="3"属性限制字符数量,
android:singleLine="false"使其变为多行文本框
android:inputType="number"设置输入类型
android:hint="13525505014"设置默认显示信息
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表