随笔分类 -  Android 组件属性和方法说明

摘要:1 android:divider="#fffff" 分割线颜色2 android:dividerHeight="1px" 分割线高度divider 分割线-去掉分割线则设为@nulldivider height分割线 高度,此处最小为1,设为0无效,仍然会显示cacheColorHint="#... 阅读全文
posted @ 2015-03-27 10:55 jenson138 阅读(759) 评论(0) 推荐(1)
摘要:将EditText内容转换为字符串:EditText.getText().toString() 1 13 14 //设为默认光标位置实例:int num = Integer.valueOf(EditText.getText().t... 阅读全文
posted @ 2015-03-19 15:15 jenson138 阅读(356) 评论(0) 推荐(1)
摘要:tv.setTextColor(Color.parseColor("#FFFFFF"));tv.setTextColor(Color.WHITE); tv.setTextColor(Color.rgb(255, 255, 255)); //注意Color是大写C,不是color.holo_orang... 阅读全文
posted @ 2015-03-17 14:49 jenson138 阅读(25951) 评论(1) 推荐(0)
摘要:android:drawable放一个drawable资源android:state_pressed 是否按下,如一个按钮触摸或者点击。android:state_focused 是否取得焦点,比如用户选择了一个文本框。android:state_hovered 光标是否悬停,通常与focused ... 阅读全文
posted @ 2015-02-04 17:03 jenson138 阅读(8109) 评论(1) 推荐(0)
摘要:1 android:layout_width="match_parent"2 android:layout_height="match_parent"3 android:background="@android:color/white"4 tools:context=... 阅读全文
posted @ 2015-01-15 12:35 jenson138 阅读(800) 评论(0) 推荐(1)
摘要:只要在AndroidManifest.xml里面配置一下就可以了。在AndroidManifest.xml的activity(需要禁止转向的activity)配置中加入android:screenOrientation=”landscape”属性即可(landscape是横向,portrait是纵向... 阅读全文
posted @ 2015-01-14 20:26 jenson138 阅读(536) 评论(0) 推荐(1)
摘要:android:theme="@android:style/Theme.Dialog" : Activity显示为对话框模式android:theme="@android:style/Theme.NoTitleBar" : 不显示应用程序标题栏android:theme="@android:styl... 阅读全文
posted @ 2015-01-14 14:52 jenson138 阅读(1189) 评论(1) 推荐(0)
摘要:建立一个.XML文件,名为:image_tab_bg.xml1 2 然后你要实现的图片ImageView的src设为:@drawable/image_tab_bg即可注意:不要设为ImageView的Background属性中;这样图片会被拉申ImageView中XML属性src和backgroun... 阅读全文
posted @ 2014-11-20 18:20 jenson138 阅读(3428) 评论(0) 推荐(0)
摘要:padding 设置组件四边的间距,如20.0dip 阅读全文
posted @ 2014-11-20 11:36 jenson138 阅读(284) 评论(0) 推荐(1)
摘要:(转自:http://www.cnblogs.com/topcoderliu/archive/2011/06/07/2074419.html)【自己经历:要getTag前提是要有setTag】setTag()/getTag() View中的setTag(Onbect)表示给View添加一个格外的数据... 阅读全文
posted @ 2014-10-25 17:25 jenson138 阅读(492) 评论(0) 推荐(0)
摘要:(转自:http://www.open-open.com/lib/view/open1378257991687.html)123456scaleType="centerInside"android:layout_width="60dip"android:layout_height="60dip"an... 阅读全文
posted @ 2014-10-23 10:37 jenson138 阅读(291) 评论(0) 推荐(0)
摘要:android view setVisibility():有三个参数:Parameters:visibility One of VISIBLE, INVISIBLE, or GONE,想对应的三个常量值:0、4、8VISIBLE:0 意思是可见的INVISIBILITY:4 意思是不可见的,但还占着... 阅读全文
posted @ 2014-10-10 17:08 jenson138 阅读(474) 评论(0) 推荐(0)