当前位置:  编程技术>移动开发
本页文章导读:
    ▪从您的应用程序返回桌面        从你的应用程序返回桌面 public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) {   Intent intent = new Intent(Intent.ACTION_MAIN); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.addCat.........
    ▪ (转载) 对于Cursor 的根本用法        (转载) 对于Cursor 的基本用法 原文作者:http://www.cnblogs.com/TerryBlog/archive/2010/07/05/1771459.html   使用过 SQLite 数据库的童鞋对 Cursor 应该不陌生,如果你是搞.net 开发你大可以把Cursor理解成 Ado.net .........
    ▪ 自定义listview高亮成效       自定义listview高亮效果 参考http://www.geekmind.net/2009/10/android-custom-listview-selector.html1) Copy files from the Android SDK:Go to android-sdk/platforms/android-1.6/data/res/drawable and copy the following .xml files to your project.........

[1]从您的应用程序返回桌面
    来源: 互联网  发布时间: 2014-02-18
从你的应用程序返回桌面

public boolean onKeyDown(int keyCode, KeyEvent event) {

if (keyCode == KeyEvent.KEYCODE_BACK) {

 

Intent intent = new Intent(Intent.ACTION_MAIN);

intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

intent.addCategory(Intent.CATEGORY_HOME); 

this.startActivity(intent);            

return true;

} else {

return super.onKeyDown(keyCode, event);

}

}


    
[2] (转载) 对于Cursor 的根本用法
    来源: 互联网  发布时间: 2014-02-18
(转载) 对于Cursor 的基本用法

原文作者:http://www.cnblogs.com/TerryBlog/archive/2010/07/05/1771459.html

 

使用过 SQLite 数据库的童鞋对 Cursor 应该不陌生,如果你是搞.net 开发你大可以把Cursor理解成 Ado.net 中的数据集合相当于dataReader。今天特地将它单独拿出来谈,加深自己和大家对Android 中使用 Cursor 的理解。

关于 Cursor

在你理解和使用 Android Cursor 的时候你必须先知道关于 Cursor 的几件事情:

  • Cursor 是每行的集合。
  • 使用 moveToFirst() 定位第一行。
  • 你必须知道每一列的名称。
  • 你必须知道每一列的数据类型。
  • Cursor 是一个随机的数据源。
  • 所有的数据都是通过下标取得。

关于 Cursor 的重要方法:

  • close()
    关闭游标,释放资源
  • copyStringToBuffer(int columnIndex, CharArrayBuffer buffer)
    在缓冲区中检索请求的列的文本,将将其存储
  • getColumnCount()
    返回所有列的总数
  • getColumnIndex(String columnName)
    返回指定列的名称,如果不存在返回-1
  • getColumnIndexOrThrow(String columnName)
    从零开始返回指定列名称,如果不存在将抛出IllegalArgumentException 异常。
  • getColumnName(int columnIndex)
    从给定的索引返回列名
  • getColumnNames()
    返回一个字符串数组的列名
  • getCount()
    返回Cursor 中的行数
  • moveToFirst()
    移动光标到第一行
  • moveToLast()
    移动光标到最后一行
  • moveToNext()
    移动光标到下一行
  • moveToPosition(int position)
    移动光标到一个绝对的位置
  • moveToPrevious()
    移动光标到上一行

下面来看看一小段代码:

 

if (cur.moveToFirst() == false)
{
//为空的Cursor
return;
}
复制代码

 

访问 Cursor 的下标获得其中的数据

 

int nameColumnIndex = cur.getColumnIndex(People.NAME);
String name = cur.getString(nameColumnIndex);
复制代码

 

 

现在让我们看看如何循环 Cursor 取出我们需要的数据

 

while(cur.moveToNext())
{
//光标移动成功
//把数据取出
}
复制代码

 

 

当cur.moveToNext() 为假时将跳出循环,即 Cursor 数据循环完毕。

如果你喜欢用 for 循环而不想用While 循环可以使用Google 提供的几下方法:

  • isBeforeFirst()
    返回游标是否指向之前第一行的位置
  • () isAfterLast
    返回游标是否指向第最后一行的位置
  • isClosed()
    如果返回 true 即表示该游戏标己关闭

有了以上的方法,可以如此取出数据

 AbstractCursor

for(cur.moveToFirst();!cur.isAfterLast();cur.moveToNext())
{
    int nameColumn = cur.getColumnIndex(People.NAME);
    int phoneColumn = cur.getColumnIndex(People.NUMBER);
    String name = cur.getString(nameColumn);
    String phoneNumber = cur.getString(phoneColumn);
}
复制代码

 

Tip:在Android 查询数据是通过Cursor 类来实现的。当我们使用 SQLiteDatabase.query()方法时,就会得到Cursor对象, Cursor所指向的就是每一条数据。结合ADO.net 的知识可能好理解一点。

Cursor 位于 android.database.Cursor类,可见出它的设计是基于数据库服务产生的。

另外,还有几个己知的子类,分别为:

  • AbstractWindowedCursor
  •  CrossProcessCursor
  •  CursorWrapper
  •  MatrixCursor
  •  MergeCursor
  •  MockCursor
  • SQLiteCursor

具体详细的使用方法和解释可以去参照API,这里就不过多讲述。


    
[3] 自定义listview高亮成效
    来源: 互联网  发布时间: 2014-02-18
自定义listview高亮效果
参考http://www.geekmind.net/2009/10/android-custom-listview-selector.html

1) Copy files from the Android SDK:
Go to android-sdk/platforms/android-1.6/data/res/drawable and copy the following .xml files to your project's /res/drawable folder:
list_selector_background.xml
list_selector_background_transition.xml
You also need the following 9-patch images from the same folder, because they're referenced by the above .xml-files. You have to copy them, because within the SDK they're not a public resource, which means you can't just access them through the  android: namespace as you could do with other public resources.
list_selector_background_focus.9.png
list_selector_background_longpress.9.png
list_selector_background_pressed.9.png
list_selector_background_disabled.9.png

2) Edit the two xml files and add to all resource values, which are publicly accessible the "android:namespace"

In our case this is only the following item:

<item android:drawable="@android:color/transparent" android:state_window_focused="false"></item>

All the other elements can point to the local namespace, because we copied the resources (images) into our local project's /res/drawable/ folder.

3)修改点击高亮的效果:用自定义的图片代替list_selector_background_pressed.9.png
或者修改list_selector_background_transition.xml里值。

4)listview可以加入一个默认的背景:
listView.setBackgroundResource(R.color.white);

5)listview加入选择XML:
listView.setSelector(R.drawable.list_selector_background);





    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3