1、设置activity无标题,全屏

// 设置为无标题栏 requestWindowFeature(Window.FEATURE_NO_TITLE); // 设置为全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 

2、获得屏幕高度和宽度

//获取屏幕的高度和宽度用到WindowManager这个类WindowManager wm = (WindowManager) getContext().getSystemService(Context.WINDOW_SERVICE); int width = wm.getDefaultDisplay().getWidth();int height = wm.getDefaultDisplay().getHeight();

3、获取手机各种信息

TelephonyManager tm = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);String imei = tm.getDeviceId();//移动设备国际辨识码String imsi = tm.getSubscriberId();//国际移动用户识别码String tel = tm.getLine1Number();//电话号码        String model =  android.os.Build.MODEL;//手机型号String sdk = android.os.Build.VERSION.SDK;//SDK版本    String release = android.os.Build.VERSION.RELEASE;//系统版本//根据IMSI号码识别移动供应商public String getProvidersName(String IMSI) {    String ProvidersName = null;    // IMSI号前面3位460是国家,紧接着后面2位00 02是中国移动,01是中国联通,03是中国电信。    if (IMSI.startsWith("46000") || IMSI.startsWith("46002")) {        ProvidersName = "中国移动";    } else if (IMSI.startsWith("46001")) {        ProvidersName = "中国联通";    } else if (IMSI.startsWith("46003")) {        ProvidersName = "中国电信";    }    return ProvidersName;}

4、使用Toast输出一个字符串

public void showToast(String text){    Toast.makeText(this, text, Toast.LENGTH_SHORT).show();}

5、把一个字符串写进文件

//把一个字符串写进文件public void writeFile(String str,String path){    File file;    FileOutputStream out;    try{        //创建文件        file = new File(path);        file.createNewFile();        //打开文件file的输出流        out = new FileOutputStream(file);        //将字符串转换成byte数组写入文件        out.write(str.getBytes());        out.close();    }catch(IOException e){            }}

6、把文件内容读出到字符串

//把文件内容读出到字符串public String getFileInfo(String path){    File file;    String str = "";    FileInputStream in;    try{        //打开文件的inputStream        file  new File(path);        in = new FileInputStream(file);        //将文件内容读入byte数组        int length = (int)file.length();        byte [] temp = new byte[length];        in.read(temp,0,length);        str = EncodingUtils.getString(temp, "utf-8");        in.close();    }catch(IOException e){            }    return str;}

7、程序的安装,卸载,更新

//调出系统安装应用String fileName = Environment.getExternalStorageDirectory() + apkName;Uri uri = Uri.fromFile(new File(fileName));Intent intent = new Intent(Intent.ACTION_VIEW);intent.setDataAndType(uri, "application/vnd.android.package-archive");this.startActivity(intent);//调出系统卸载应用Uri packageURI = Uri.parse("package: your.app.id");Intent intent = new Intent(Intent.ACTION_DELETE,packageURI);startActivity(intent);

8、实现点击两次返回键退出

//第一步,定义一个变量,用于标识是否退出boolean isExit;//第二步,重写Activity中onKeyDown方法@Overridepublic boolean onKeyDown(int keyCode, KeyEvent event) {    if (keyCode == KeyEvent.KEYCODE_BACK) {        exit();        return false;    } else {        return super.onKeyDown(keyCode, event);    }}//第三步,写一个退出方法public void exit(){    if (!isExit) {        isExit = true;        Toast.makeText(getApplicationContext(), "再按一次退出程序", Toast.LENGTH_SHORT).show();        mHandler.sendEmptyMessageDelayed(0, 2000);    } else {        Intent intent = new Intent(Intent.ACTION_MAIN);        intent.addCategory(Intent.CATEGORY_HOME);        startActivity(intent);        System.exit(0);    }}//第四步,根据exit()方法中的的消息,写一个HandlerHandler mHandler = new Handler() {    @Override    public void handleMessage(Message msg) {        // TODO Auto-generated method stub        super.handleMessage(msg);        isExit = false;    } };

更多相关文章

  1. Android使用Retrofit上传单个文件以及多个文件
  2. Android检测版本更新(读取apk配置文件中的版本信息)
  3. android实现ftp上传、下载,支持文件夹
  4. android java 检测文件夹(目录)是否存在,不存在则创建
  5. android异步操作AsyncTask编写文件查看器
  6. android 之 选择文件
  7. Android http文件上传-本地+服务器一条龙分析
  8. Android 可選文件格式瀏覽器
  9. Android操作SD卡文件

随机推荐

  1. 用javascript进行拖拽2(转)
  2. 手低眼高 初学者学习Hibernate的方法
  3. java线程--volatile实现可见性
  4. 添加到arraylist中的列表时IndexOutOfBou
  5. 作为一只程序猿,我要说说IT业的研发工程师
  6. jQuery(JavaScript)获取文字(字符串)宽度(显示
  7. 变态跳台阶(java版)
  8. 为什么我的Java Web服务不能与我的Perl后
  9. 用Java编写的http下载工具类,包含下载进度
  10. 生成真值组合【Java实现】