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
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
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
使用意图调用内置应用程序
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
3.1
ButtonButton这控件不用多说,就是一个按钮,主要是点击后进行相应事件的响应。给组件添加ID属性:定义格式为
android:id="@+id/name",这里的name是自定义的,不是索引变量。“@+”表示新声明,"@"表示引用,例如:"@+id/tv"
表示新声明一个id,是id...
分类:
移动开发 时间:
2014-05-20 00:43:56
阅读次数:
426
在给控件设置背景时像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_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
android:id 为控件指定相应的IDandroid:text
指定控件的文本,置尽量使用strings.xmlandroid:grivity 指定控件的基本位置 ,比如举重,居右,android:padding
指定控件的内边距,控件当中的内容android:singleLine 如果设置为真...
分类:
其他好文 时间:
2014-05-11 00:16:12
阅读次数:
385
使用意图传递数据的几种方式
点此获取完整代码
我们除了要从活动返回数据,也常常要传递数据给活动。对此我们可以使用Intent对象将这些数据传递给目标活动。
1、创建一个名为PassingData的项目,在activity_main.xml文件中添加一个Button:
<Button
android:id="@+id/btn_Secon...
分类:
移动开发 时间:
2014-05-08 04:21:08
阅读次数:
472
显示操作进度的对话框
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