当前位置: 编程技术>移动开发
本页文章导读:
▪五大使用商店产品提供、收费渠道模式对比分析 五大应用商店产品提供、收费渠道模式对比分析
http://tech.it168.com/focus/200908/mmarket/index.shtml
......
▪ 动画片animition方法 动画animition方法
protected void animate() {
// TODO Auto-generated method stub ImageView img = (ImageView) findViewById(R.id.image_view); img.setBackgroundResource(R.drawable.frame_animation); .........
▪ 【转】透过电话号码查找联系人 【转】通过电话号码查找联系人
示例代码,2.1上调试通过:
public String getContactIDFromPhoneNum(String phoneNum) {
String contactId = "";
ContentResolver cr = getContentResolver();
Cursor pCur = cr.query(
Con.........
[1]五大使用商店产品提供、收费渠道模式对比分析
来源: 互联网 发布时间: 2014-02-18
五大应用商店产品提供、收费渠道模式对比分析
http://tech.it168.com/focus/200908/mmarket/index.shtml
http://tech.it168.com/focus/200908/mmarket/index.shtml
[2] 动画片animition方法
来源: 互联网 发布时间: 2014-02-18
动画animition方法
protected void animate() {
// TODO Auto-generated method stub
ImageView img = (ImageView) findViewById(R.id.image_view);
img.setBackgroundResource(R.drawable.frame_animation);
img.setVisibility(ImageView.VISIBLE);
AnimationDrawable anim = (AnimationDrawable) img.getBackground();
if(anim.isRunning()){
anim.stop();
}
else{
anim.stop();
anim.start();
}
}
[3] 【转】透过电话号码查找联系人
来源: 互联网 发布时间: 2014-02-18
【转】通过电话号码查找联系人
示例代码,2.1上调试通过:
public String getContactIDFromPhoneNum(String phoneNum) {
String contactId = "";
ContentResolver cr = getContentResolver();
Cursor pCur = cr.query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,
ContactsContract.CommonDataKinds.Phone.NUMBER + " = ?",
new String[] { phoneNum }, null);
if (pCur.moveToFirst()) {
contactId = pCur
.getString(pCur
.getColumnIndex(ContactsContract.CommonDataKinds.Phone.CONTACT_ID));
pCur.close();
}
return contactId;
}
希望会有帮助
最新技术文章: