背景
一些东西可以存在自己定义的文件里面,这个文件可以在手机中,可以在SD卡中,在这里就主要介绍一下在SD卡中的存储和读取吧~代码 public class save
{ public static void savefile2card(Context context,String usern...
分类:
移动开发 时间:
2014-05-19 22:36:15
阅读次数:
456
Android中加载位图的关键的代码: AssetManager assets
=context.getAssets(); //用一个AssetManager 对象来从应用程序包的已编译资源中为工程加载资产 InputStream
istream=assets.open("/*位图的名字*/");B...
分类:
移动开发 时间:
2014-05-19 20:53:10
阅读次数:
271
广播分2种,无序广播和有序广播。可以理解为散列和队列广播。首先无序广播,不能中断,分发机制有点类似散列发送。这种广播的的发送为:context.sendBroadcast这种广播是不能中断的,请看API说明。其次为有序广播,可以中断。这种广播,以我的理解可能存在很大的BUG,短信这块广播的发送BUG...
分类:
移动开发 时间:
2014-05-19 09:55:00
阅读次数:
272
import android.annotation.SuppressLint;import
android.app.Activity;import android.content.Context;import
android.content.Intent;import android.os.Buil...
分类:
移动开发 时间:
2014-05-18 19:43:22
阅读次数:
502
为实现一些玻璃蒙版的效果,需要用到高斯算法对图片进行模糊处理,基础算法代码如下 1
public static Bitmap fastblur(Context context, Bitmap sentBitmap, int radius) {
2 3 if (VERSION....
分类:
其他好文 时间:
2014-05-18 19:06:13
阅读次数:
297
/**
* 封装ProecssDialog对话框
*
*/
public class LoadDialog extends ProgressDialog {
private String title = "进度对话框";
private String message = "加载数据中....";
public LoadDialog(Context context, int theme)...
分类:
移动开发 时间:
2014-05-18 15:42:07
阅读次数:
314
MainActivity如下:
package cc.cn;
import java.util.HashMap;
import org.json.JSONObject;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import com.android.volley....
分类:
移动开发 时间:
2014-05-18 15:18:31
阅读次数:
297
Android中提供一种简单的Toast消息提示框机制,可以在用户点击了某些按钮后,提示用户一些信息,提示的信息不能被用户点击,Toast的提示信息根据用户设置的显示时间后自动消失。Toast的提示信息可以在调试程序的时候方便的显示某些想显示的东西,或者给用户提供友好的界面显示效果。
有两种方式去创建并且显示Toast:
Toast.makeText(Context context...
分类:
其他好文 时间:
2014-05-18 08:28:41
阅读次数:
279
假设有如下分辨率机器:
800 x 480
1024 x 600
1024 x 768
1280 x 800
1920 x 1200
2048 x 1536
总共六种类分辨率机器,如果按照dp为单位来细分可以分为几种呢?
首先通过context.getResources().getDisplayMetrics().density获取到当前机器的屏幕密度,然后通过dp = px/d...
分类:
移动开发 时间:
2014-05-18 05:46:38
阅读次数:
340
背景 SharedPreferences我觉得是最容易上手的,以xml方式存储。代码
public class share { public static void saveInfo(Context context,String
username,String password) { ...
分类:
移动开发 时间:
2014-05-18 00:35:54
阅读次数:
360