andriod笔记
qfjiang
这个作者很懒,什么都没留下…
展开
-
如何在andriod中用系统绑定的程序打开文件?
用系统默认的方式打开文件: /* ?手机勺打开文件的method */ private void openFile(File f) { Intent intent = new Intent(); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(android.content.In...2012-09-12 10:47:25 · 107 阅读 · 0 评论 -
在程序中实现<form-upload>
private void uploadFile() { String end = "\r\n"; String twoHyphens = "--"; String boundary = "*****"; try { URL url =new URL(actionUrl); HttpURLConnection co...原创 2012-10-09 10:22:21 · 118 阅读 · 0 评论 -
从网络获取图片
@Override public View getView(int position, View convertView, ViewGroup parent) { // TODO Auto-generated method stub /* 建立一个ImageView对象 */ ImageView imageVie...2012-10-08 15:44:52 · 85 阅读 · 0 评论 -
用系统注册的(默认的处理)程序打开文件
/* 开启播放录音文件的程序 */ private void openFile(File f) { Intent intent = new Intent(); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(android.content.Intent.ACTION_...2012-09-25 17:01:32 · 106 阅读 · 0 评论 -
用AlarmManager来设置作业-定时运行
安排作业: long repeatTime=24*60*60*1000; /* 将更换桌布的排程叵丈AlarmManager中 */ Intent intent = new Intent(EX06_13.this,MyReceiver.class); PendingIntent sender = PendingIntent.getBroadc...原创 2012-09-20 14:34:06 · 107 阅读 · 0 评论 -
获取手机外部存储卡的剩余空间
private void showSize() { /* 将TextView及ProgressBar设定为空值及0 */ myTextView.setText(""); myProgressBar.setProgress(0); /* 判断记忆卡是否插入 */ if (Environment.getExternalStorageState().equals(Envir...原创 2012-09-17 11:27:38 · 95 阅读 · 0 评论 -
在程序内部注册和反注册服务-一个接受短信的例子
请注意下面程序中的黑体部分: package irdc.EX06_05; import android.app.Activity; import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.content.Inte...原创 2012-09-17 09:45:08 · 116 阅读 · 0 评论 -
类似的Timer循环服务设计
<service android:name=".mService1" android:exported="true" android:process=":remote" ></service> /* 自定义mService类继承Service类 */public class mService1 extends Service{ /* 建立Handler对象,作为...2012-09-14 17:42:25 · 196 阅读 · 0 评论 -
获取系统中运行的软件
mActivityManager = (ActivityManager)EX05_21.this.getSystemService(ACTIVITY_SERVICE); //最多获取 100 个运行信息 List<ActivityManager.RunningTaskInfo> mRunningTasks = mActivityManager.getRunningTasks(...2012-09-13 11:59:20 · 98 阅读 · 0 评论 -
获取手机SIM卡电话号码信息
<uses-permission android:name="android.permission.READ_PHONE_STATE"/> TelephonyManager telMgr = (TelephonyManager)getSystemService(TELEPHONY_SERVICE); if(telMgr.getSimState()==telMgr.S...2012-09-13 09:48:45 · 513 阅读 · 0 评论 -
Andriod中的wifi扫描和连接
WifiManager wfm= (WifiManager) this.getSystemService(Context.WIFI_SERVICE); mWiFiManager01 .startScane() ; //启动网络扫描 List<WifiConfiguration> list=wfm.getConfiguredNetworks(); if(list.size()>...2012-09-12 18:00:18 · 158 阅读 · 0 评论 -
用警告对话框(AlertDialog)选择条目
/* 选择几个文件时,弹出要处理文件的ListDialog */ String[] menu={"打开文件","更改文件名","删除文件"}; new AlertDialog.Builder(EX05_15.this) .setTitle("你要做甚么?") .setItems(menu,d) /* menu 就是要显示的选择项, ...2012-09-12 11:40:10 · 251 阅读 · 0 评论 -
各种单出窗口的代码
/* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. ...原创 2012-10-09 17:02:08 · 169 阅读 · 0 评论