码迷,mamicode.com
首页 >  
搜索关键字:android_id    ( 471个结果
android:修改PagerTabStrip中的背景颜色,标题字体的样式、颜色和图标以及指示条的颜色
1.修改PagerTabStrip中的背景颜色我们在布局中直接设置background属性即可: <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="fill_parent" android:layout_height="fill_paren...
分类:移动开发   时间:2014-05-31 23:42:11    阅读次数:624
@+id/和android:id有什么区别?
Any View object may have an integer ID associated with it, to uniquely identify the View within the tree. When the application is compiled, this ID is...
分类:移动开发   时间:2014-05-27 17:10:02    阅读次数:314
Android:仿手机QQ好友动态的ListView
1.介绍:本博客使用XListView模仿Android版QQ好友动态的ListView效果。效果截图如下:效果图1效果图2这里面主要涉及的是ListView的布局问题,让我们看一下Item的布局文件吧。 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/con...
分类:移动开发   时间:2014-05-22 09:14:07    阅读次数:370
Android学习笔记(十七)——使用意图调用内置应用程序
使用意图调用内置应用程序 1、创建一个新的Android项目并命名为Intents,在main.xml文件中添加两个Button: <Button android:id="@+id/btn_webbrowser" android:layout_width="fill_parent" android:layout_heigh...
分类:移动开发   时间:2014-05-21 16:24:12    阅读次数:298
【读书笔记-《Android游戏编程之从零开始》】3.Android 游戏开发常用的系统控件(Button、Layout、ImageButton)
3.1 ButtonButton这控件不用多说,就是一个按钮,主要是点击后进行相应事件的响应。给组件添加ID属性:定义格式为 android:id="@+id/name",这里的name是自定义的,不是索引变量。“@+”表示新声明,"@"表示引用,例如:"@+id/tv" 表示新声明一个id,是id...
分类:移动开发   时间:2014-05-20 00:43:56    阅读次数:426
android 设置背景为空(透明)
在给控件设置背景时像ps那样的背景透明 在3.0以下可以使用 imageView.setBackgroundResource(android.R.id.empty);但是这个方法在3.0以上会出现ERROR/AndroidRuntime(xxxxx): Caused by: android.cont...
分类:移动开发   时间:2014-05-20 00:08:42    阅读次数:615
Include设置layout_*无效解决方法
在include标签中不能省略 layout_width或者layout_height否则设置layout_weight就会无效。如下设置即可             android:id="@+id/linearLayout1"         android:layout_width="match_parent"         android:layout_height="w...
分类:其他好文   时间:2014-05-13 07:12:47    阅读次数:389
31 属性
android:id 为控件指定相应的IDandroid:text 指定控件的文本,置尽量使用strings.xmlandroid:grivity 指定控件的基本位置 ,比如举重,居右,android:padding 指定控件的内边距,控件当中的内容android:singleLine 如果设置为真...
分类:其他好文   时间:2014-05-11 00:16:12    阅读次数:385
Android学习笔记(十二)——使用意图传递数据的几种方式
使用意图传递数据的几种方式 点此获取完整代码 我们除了要从活动返回数据,也常常要传递数据给活动。对此我们可以使用Intent对象将这些数据传递给目标活动。 1、创建一个名为PassingData的项目,在activity_main.xml文件中添加一个Button: <Button android:id="@+id/btn_Secon...
分类:移动开发   时间:2014-05-08 04:21:08    阅读次数:472
Android学习笔记(九)——更复杂的进度对话框
显示操作进度的对话框 1、使用上一篇创建的同一项目,在activity_main.xml文件中添加一个Button: <Button android:id="@+id/btn_dialog3" android:layout_width="fill_parent" android:layout_height="wrap_cont...
分类:移动开发   时间:2014-05-07 11:30:28    阅读次数:434
471条   上一页 1 ... 45 46 47 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!