当前位置: 编程技术>移动开发
本页文章导读:
▪透过gps,wifi,基站定位获取当前位置 通过gps,wifi,基站定位获取当前位置
private Location getCurrentLocationGPS() { Criteria criteria = new Criteria(); criteria.setAccuracy(Criteria.ACCURACY_FINE); criteria.setAltitudeRequired(false.........
▪ 彩信发送(透过手机本身) 彩信发送(通过手机本身)
private void sendMessage(){
Intent intent = new Intent(Intent.ACTION_SEND,Uri.parse("mms://"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse('file:///sd.........
▪ 三个简略混淆的jquery键盘事件 三个容易混淆的jquery键盘事件
1、keydown()
keydown事件会在键盘按下时触发.
2、keyup()
keyup事件会在按键释放时触发,也就是你按下键盘起来后的事件
3、keypress()
keypress事件会.........
[1]透过gps,wifi,基站定位获取当前位置
来源: 互联网 发布时间: 2014-02-18
通过gps,wifi,基站定位获取当前位置
private Location getCurrentLocationGPS() {
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String locationProvider = locationManager.getBestProvider(criteria,
true);
Location location = locationManager
.getLastKnownLocation(locationProvider);
return location;
}
// 根据wifi获取当前位置
private Location getCurrentLocationWifi(Context context) {
Location location=null;
LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
try
{
WifiManager wifiManager=(WifiManager)context.getSystemService(Context.WIFI_SERVICE);
if(wifiManager.isWifiEnabled())
{
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
}
}
catch(Exception e)
{
}
return location;
}
// 根据基站获取当前的位置
private Location getCurrentLocationAGPS() {
Location location = null;
if (telephonyManager.getCellLocation() == null) {
}
GsmCellLocation gcl = (GsmCellLocation) telephonyManager
.getCellLocation();
int cid = gcl.getCid();
int lac = gcl.getLac();
int mcc = Integer.valueOf(telephonyManager.getNetworkOperator()
.substring(0,
3));
int mnc = Integer.valueOf(telephonyManager.getNetworkOperator()
.substring(3,
5));
try {
// 组装JSON查询字符串
JSONObject holder = new JSONObject();
holder.put("version", "1.1.0");
holder.put("host", "maps.google.com");
// holder.put("address_language", "zh_CN");
holder.put("request_address", true);
JSONArray array = new JSONArray();
JSONObject data = new JSONObject();
data.put("cell_id", cid); // 25070
data.put("location_area_code", lac);// 4474
data.put("mobile_country_code", mcc);// 460
data.put("mobile_network_code", mnc);// 0
array.put(data);
holder.put("cell_towers", array);
// 创建连接,发送请求并接受回应
DefaultHttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://www.google.com/loc/json");
StringEntity se = new StringEntity(holder.toString());
post.setEntity(se);
HttpResponse resp = client.execute(post);
HttpEntity entity = resp.getEntity();
BufferedReader br = new BufferedReader(
new InputStreamReader(entity.getContent()));
StringBuffer resultStr = new StringBuffer();
String readLine = null;
while ((readLine = br.readLine()) != null) {
resultStr.append(readLine);
}
JSONObject jsonResult = new JSONObject(resultStr.toString());
JSONObject jsonLocation = jsonResult.getJSONObject("location");
double jsonLat = jsonLocation.getDouble("latitude");
double jsonLon = jsonLocation.getDouble("longitude");
location = new Location("AGPS");
location.setLatitude(jsonLat);
location.setLongitude(jsonLon);
} catch (Exception e) {
// TODO: handle exception
}
return location;
}
private Location getCurrentLocationGPS() {
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String locationProvider = locationManager.getBestProvider(criteria,
true);
Location location = locationManager
.getLastKnownLocation(locationProvider);
return location;
}
// 根据wifi获取当前位置
private Location getCurrentLocationWifi(Context context) {
Location location=null;
LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
try
{
WifiManager wifiManager=(WifiManager)context.getSystemService(Context.WIFI_SERVICE);
if(wifiManager.isWifiEnabled())
{
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
}
}
catch(Exception e)
{
}
return location;
}
// 根据基站获取当前的位置
private Location getCurrentLocationAGPS() {
Location location = null;
if (telephonyManager.getCellLocation() == null) {
}
GsmCellLocation gcl = (GsmCellLocation) telephonyManager
.getCellLocation();
int cid = gcl.getCid();
int lac = gcl.getLac();
int mcc = Integer.valueOf(telephonyManager.getNetworkOperator()
.substring(0,
3));
int mnc = Integer.valueOf(telephonyManager.getNetworkOperator()
.substring(3,
5));
try {
// 组装JSON查询字符串
JSONObject holder = new JSONObject();
holder.put("version", "1.1.0");
holder.put("host", "maps.google.com");
// holder.put("address_language", "zh_CN");
holder.put("request_address", true);
JSONArray array = new JSONArray();
JSONObject data = new JSONObject();
data.put("cell_id", cid); // 25070
data.put("location_area_code", lac);// 4474
data.put("mobile_country_code", mcc);// 460
data.put("mobile_network_code", mnc);// 0
array.put(data);
holder.put("cell_towers", array);
// 创建连接,发送请求并接受回应
DefaultHttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://www.google.com/loc/json");
StringEntity se = new StringEntity(holder.toString());
post.setEntity(se);
HttpResponse resp = client.execute(post);
HttpEntity entity = resp.getEntity();
BufferedReader br = new BufferedReader(
new InputStreamReader(entity.getContent()));
StringBuffer resultStr = new StringBuffer();
String readLine = null;
while ((readLine = br.readLine()) != null) {
resultStr.append(readLine);
}
JSONObject jsonResult = new JSONObject(resultStr.toString());
JSONObject jsonLocation = jsonResult.getJSONObject("location");
double jsonLat = jsonLocation.getDouble("latitude");
double jsonLon = jsonLocation.getDouble("longitude");
location = new Location("AGPS");
location.setLatitude(jsonLat);
location.setLongitude(jsonLon);
} catch (Exception e) {
// TODO: handle exception
}
return location;
}
[2] 彩信发送(透过手机本身)
来源: 互联网 发布时间: 2014-02-18
彩信发送(通过手机本身)
private void sendMessage(){ Intent intent = new Intent(Intent.ACTION_SEND,Uri.parse("mms://")); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.putExtra(Intent.EXTRA_STREAM, Uri.parse('file:///sdcard/image.png')); intent.putExtra("sms_body", "发送给老婆的100字!!"); intent.putExtra("subject", "发送给老婆的100字!!"); intent.putExtra(Intent.EXTRA_TEXT, "222"); intent.setType("image/png"); intent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity"); startActivity(intent); }
[3] 三个简略混淆的jquery键盘事件
来源: 互联网 发布时间: 2014-02-18
三个容易混淆的jquery键盘事件
1、keydown()
keydown事件会在键盘按下时触发.
2、keyup()
keyup事件会在按键释放时触发,也就是你按下键盘起来后的事件
3、keypress()
keypress事件会在敲击按键时触发,我们可以理解为按下并抬起同一个按键
最新技术文章: