Android自学笔记之 EditView和TextView的一些属特殊性

res/layout 中设置布局文件

hint属性:提示输入信息

text属性:与hint的区别---hint仅仅是提示;

text是实际的内容

讲布局xml文件引入到activity当中

setContentView(R.layout.main_activity);将布局文件与当前文件关联

wrap_content:包裹实际文本内容

fill_parent:当前控件铺满父类容器(2.3之前)

match_parent:当前控件铺满父类容器(目前使用这个2.3api之后添加的一个属性

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-11 03:57:12

Android自学笔记之 EditView和TextView的一些属特殊性的相关文章

Android自学笔记之 多个TextView跑马灯的实现

textView跑马灯实现: 1.定义textView标签的4个属性: android:singleLine="true"//使其只能单行 android:ellipsize="marquee"//去掉省略号 android:focusable = "true"//使其循环 android : focusableInTouchMode = "true" 这样一个TextVIew就实现了跑马灯效果了,但是如果再用相同的写法写第二

Android自学笔记-16-任务栈

题目链接:http://acm.fzu.edu.cn/problem.php?pid=2170 贴个baka爷的代码留念.. 数据出的有问题,输入的字符串长度不超过1000 #include<iostream> #include<cstdio> #include<cstring> #include<string> #include<algorithm> #include<map> #include<queue> #incl

Android自学笔记-17-广播接收者(BroadcastReceiver)

下载地址: http://pan.baidu.com/s/1pJ2lWYB Android自学笔记-17-广播接收者(BroadcastReceiver),码迷,mamicode.com

android 自学笔记2-布局

1.LinearLayout <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="horizontal" >  

android 自学笔记

今日学习了Android常用的控件 TextView     <TextView         android:id="@+id/text_view"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:gravity="center"         andro

Android自学笔记(四)简单电子宠物的实现

由于本人还是个菜鸡……代码质量难以保证,so仅供个人学习记录目的和仅供参考……要是发现什么bug会编辑博客……有意见建议欢迎提出! 最近在Android学习的过程中接触到了简单的动画效果,就突然想做个电子宠物应用一下(- ̄▽ ̄)-*. 素材来源是游戏逆转裁判的素材……也算表达一下个人对这一系列的爱……(- ̄▽ ̄)-*. gif的显示用的是GitHub的开源库:android-gif-drawable,https://github.com/koral--/android-gif-drawable

疯狂安卓Android自学笔记

开发者必备自学工具: 谷歌搜索:www.yundou.info Android原版开发文档 (英文) Doc http://www.phoned.cn/docs/reference/android/view/View.html Android原版开发文档 (英文) Doc 下载地址 http://www.phoned.cn/docs.zip 由于谷歌被封杀网页相关谷歌API无法调用打开会非常卡建议断网或FQ后使用. 2015-12-24 View 组件: 绝大多数的android基础控件都存在包

Android自学笔记:Git下载源代码

Info:做J2ME几年了,现在基本没有公司用了,是时候向Android领域进军了. 自学中,难免会有疏漏,有问题请及时提出,共同学习共同进步. 2014-10-13:初版 2014-10-14:添加 下载中断后的处理方法,可惜网上写的都没办法用,重新下载才行,谁有方法望告知. -------------------------------------------- 一.环境: 网址:https://android.googlesource.com/ (不能访问请FQ) 工具:Git(默认安装即

Android自学笔记之Spinner下拉框的功能、使用

Spinner: 是类似下拉列表的一种控件,用户从中选择相应选项! Spinner中的数据需要使用Adapter(适配器)填充. 使用: 布局文件activity_main.xml: <span style="font-family:KaiTi_GB2312;font-size:18px;"><Spinner android:id="@+id/spinner" android:layout_width="match_parent"