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