Android判断网络状态是否断开
http://hi.baidu.com/%C8%F0%F2%B6%CF%E9/blog/item/d40c4cd5b21edd0ea18bb7f7.html

Android 判断网络状态是否断开,不多说了,看代码吧!

/**

* 判断网络状态是否可用

* @return true: 网络可用 ; false: 网络不可用

*/

public boolean isConnectInternet() {

ConnectivityManager conManager=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE );

NetworkInfo networkInfo = conManager.getActiveNetworkInfo();

if (networkInfo != null ){ // 注意,这个判断一定要的哦,要不然会出错

return networkInfo.isAvailable();

}

return false ;

}

最后别忘要在加上

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

这个权限哦!

Android完全关闭应用程序
在工作过程序中遇到一个需要完全关闭应用程序的问题,在网络上找了一大堆的文章,每篇都是用System.exit(0) 或者android.os.Process.killProcess(android.os.Process.myPid()) 这两种方法,但是我试过了,System.exit(0)这个根本不行,而android.os.Process.killProcess(android.os.Process.myPid())这个只能关闭当前的Activity,也就是对于一个只有单个Activity 的应用程序有效,如果对于有多外Activity的应用程序它就无能为力了。

下面我介绍一下对于多个 Activity 的应用程序的完全关闭方法:

ActivityManager 类中提供了如下的方法:

/**

* Have the system perform a force stop of everything associated with

* the given application package. All processes that share its uid

* will be killed, all services it has running stopped, all activities

* removed, etc. In addition, a {@link Intent#ACTION_PACKAGE_RESTARTED}

* broadcast will be sent, so that any of its registered alarms can * be stopped, notifications removed, etc.

*

* You must hold the permission * {@link android.Manifest.permission#RESTART_PACKAGES} to be able to

* call this method.

*

* @param packageName The name of the package to be stopped.

*/

public void restartPackage(String packageName) {

try {

ActivityManagerNative.getDefault().restartPackage(packageName);

}

catch (RemoteException e) { }

}

所以如果要关闭整个应用程序的话只需要运行以下两行代码就行:

ActivityManager activityMgr= (ActivityManager) this.getSystemService(ACTIVITY_SERVICE );

activityMgr.restartPackage(getPackageName());

最后还需要添加这个权限才行:

<!-- 关闭应用程序的权限 -->
<uses-permission android:name="android.permission.RESTART_PACKAGES" />

本文讲述了Android中不同Activity之间的数据传递 — Bundle对象的实现(-)

描述

本文讲述了 Android 中不同 Activity 之间的数据传递 Bundle 对象的实现。

例子

有兴趣的朋友可以在登录后下载本文例子代码!

例子效果图

Android判断网络状态是否断开+Android完全关闭应用程序+ 本文讲述了Android中不同Activity之间的数据传递 — Bundle对象的实现(-)+Android中Bundle的使用示例_第1张图片

Android判断网络状态是否断开+Android完全关闭应用程序+ 本文讲述了Android中不同Activity之间的数据传递 — Bundle对象的实现(-)+Android中Bundle的使用示例_第2张图片

实现步骤

第一步 :建 Android 工程: BundleDemo

第二步 :编写 Activity 的子类别: BundleDemo ,其程序代码如下:

package com.a3gs.bundle;

import android.app.Activity;

import android.content.Intent;

import android.os.Bundle;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;

import android.widget.RadioGroup;

public class BundleDemo extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Button btn = (Button) findViewById(R.id.btn);

btn.setOnClickListener(new Button.OnClickListener(){

@Override

public void onClick(View v) {

// TODO Auto-generated method stub

EditText et = (EditText) findViewById(R.id.height);

double height = Double.parseDouble(et.getText().toString());

String sex = "";

RadioGroup rg = (RadioGroup) findViewById(R.id.sex);

if(rg.getCheckedRadioButtonId() == R.id.M) {

sex = "M";

}

if(rg.getCheckedRadioButtonId() == R.id.F) {

sex = "F";

}

// Bundle 来绑定所要的数据

Bundle bd = new Bundle();

bd.putDouble("height", height);

bd.putString("sex", sex);

// 创建一个新的 Intent ,并将 Bundle 传进去

Intent it = new Intent();

it.putExtras(bd);

it.setClass(BundleDemo.this, Bundle2.class);

startActivity(it);

BundleDemo.this.finish();

}

});

}

}接下


更多相关文章

  1. android 网络访问-图片处理优秀开源项目
  2. Android的应用程序结构分析:HelloActivity
  3. Android应用程序上传错误The package name of your apk may not
  4. Android* 操作系统上的应用程序远程调试
  5. Android 获取网络时间
  6. Android之从Browser中打开本地的应用程序&微信检测是否有对应app
  7. Android获取当前网络状态
  8. android之应用程序退到android桌面的实现
  9. android 笔记 --- Android应用程序的权限列表

随机推荐

  1. JavaScript数据结构(4):树
  2. (进阶版)有了四步解题法模板,再也不害怕动态
  3. 对列和行的操作
  4. 一道 LeetCode 的多种解法,打消了我的自以
  5. 数据对比分析法,看这篇就够了!
  6. 超级菜鸟怎么学习数据分析
  7. RFM分析-用户价值细分的精准运营方法
  8. 综合指标分析法
  9. 不可不知的分组分析法
  10. 视频讲解 | 图解剑指offer:二维数组的查找