随笔分类 -  [24] Google Android

Android ContentProvider 填删改查 实例
摘要:ContentProvider 操作类 import java.util.Calendar; import java.util.HashMap; import android.content.ContentProvider; import android.content.ContentUris; import android.content.ContentValues; import andro... 阅读全文
posted @ 2011-05-25 17:51 冯瑞涛 阅读(1153) 评论(0) 推荐(0) 编辑
Android ContentResolver 使用例子,读取联系人
摘要:import android.app.ListActivity; import android.database.Cursor; import android.os.Bundle; import android.provider.Contacts.Phones; import android.widget.ListAdapter; import android.widget.SimpleCurso... 阅读全文
posted @ 2011-05-23 17:05 冯瑞涛 阅读(1896) 评论(0) 推荐(0) 编辑
Android SQLite 数据操作 1
摘要:import android.app.Activity; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import android.databas... 阅读全文
posted @ 2011-05-18 15:16 冯瑞涛 阅读(353) 评论(0) 推荐(0) 编辑
Android SharedPreferences 存储用户登录密码
摘要:SharedPreferences 存储是在手机上的名字对存储,以XML 文件的形式。 import android.app.Activity; import android.content.SharedPreferences; import android.os.Bundle; import android.widget.EditText; public class DBSharedPrefe... 阅读全文
posted @ 2011-05-17 15:24 冯瑞涛 阅读(825) 评论(0) 推荐(0) 编辑
转:使Eclipse的智能感知可以像 Visual Studio 一样快速提示
摘要:使Eclipse的智能感知可以像vs2005那么职能(也许这个东西是vs2005向eclipse学习的结果),暂不追求这个问题,废话少说,拿出实际的: 方法一、打开eclipse: 选择windows->preferences->java->Editor->Content Assist 可以看到右边偏下有如此选项: 默认情况下:Auto activation triggers for Java的输... 阅读全文
posted @ 2011-05-15 20:54 冯瑞涛 阅读(403) 评论(0) 推荐(0) 编辑
Android 通知栏 和 提示框
摘要:通知栏 public class ActivityMainNotification extends Activity { private static int NOTIFICATIONS_ID = R.layout.activity_notification; //当前页面的布局 private NotificationManager mNotificationManager; //通知管理... 阅读全文
posted @ 2011-05-13 17:53 冯瑞涛 阅读(3956) 评论(0) 推荐(0) 编辑
Android 对话框 示例
摘要:书中这部分展示了4种Android对话框。 import android.app.Activity; import android.app.AlertDialog; import android.app.Dialog; import android.app.ProgressDialog; import android.content.Context; import android.content... 阅读全文
posted @ 2011-05-12 16:50 冯瑞涛 阅读(319) 评论(0) 推荐(0) 编辑
Android ListView 控件
摘要:ListView 现在来看是一个可以入GridView一样展示数据的列表,可以定制展示的布局,绑定数据源。 1.使用定义好的样式进行布局,这里面的值就是有一个。 public class ActivityList1 extends Activity { ListView listView; private String[] data = { "Android应用专业开发社区:eoeAndroi... 阅读全文
posted @ 2011-05-10 22:08 冯瑞涛 阅读(2307) 评论(0) 推荐(0) 编辑
Activity 之间调用与参数传递
摘要:点击按钮跳转到另一个Activity2 button2 = (Button) findViewById(R.id.button2); button2.setOnClickListener(listener2); listener2 = new OnClickListener() { public void onClick(View v) { setTitle("这是在ActivityMai... 阅读全文
posted @ 2011-04-21 17:41 冯瑞涛 阅读(1098) 评论(0) 推荐(0) 编辑
点击手机 menu 硬件按钮后的显示及处理
摘要:public class ActivityMenu extends Activity { public static final int ITEM0 = Menu.FIRST; public static final int ITEM1 = Menu.FIRST + 1; Button button1; Button button2; /** Called when the acti... 阅读全文
posted @ 2011-04-21 17:11 冯瑞涛 阅读(441) 评论(0) 推荐(0) 编辑
Android 手机摄像头做 电脑 PC 视频摄像头 聊天
摘要:到以下连个网址,把smartcam软件下载下来: http://en.sourceforge.jp/projects/sfnet_smartcam/releases/ 手机端 http://en.sourceforge.jp/projects/sfnet_smartcam/downloads/smartcam_windows/SmartCam_v1_4/SmartCam_v1_4.exe/?us... 阅读全文
posted @ 2011-04-17 22:55 冯瑞涛 阅读(5955) 评论(1) 推荐(0) 编辑
解决 warning: found plain 'id' attribute; did you mean the new 'android:id' name? 问题
摘要:因为jdk采用了1.5,所以,必须在设置id属性的时候,设置成为android:id,而不是id,这样就可以避免了该错误 。 阅读全文
posted @ 2011-04-01 15:52 冯瑞涛 阅读(861) 评论(0) 推荐(0) 编辑
Android widget 组件
摘要:ScrollView一个可以下拉滚动条的视图区域<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content">Button按钮获取并设置事件及委托Button button = (Button) findViewById(R.id.button); button.setOnClickListener(b 阅读全文
posted @ 2011-04-01 15:00 冯瑞涛 阅读(739) 评论(0) 推荐(0) 编辑
我的Android 从 2.3开始! 开发环境搭建
摘要:这篇地址不得不修改一下了,因为如果你不懂得FQ,下面的是无法打开的,所以如果你使用国内的网络就必须要FQ。JDKhttp://www.oracle.com/technetwork/java/javase/downloads/index.htmlAndroid SDKhttp://androidappdocs.appspot.com/sdk/index.htmlEclipsehttp://www.eclipse.org/Android ADThttp://androidappdocs.appspot.com/sdk/eclipse-adt.html 阅读全文
posted @ 2011-01-10 14:07 冯瑞涛 阅读(368) 评论(0) 推荐(0) 编辑