import android.util.Log; //Logcat统一管理类 public class L { private L() { /* cannot be instantiated */ throw
在Android开发过程中,我们可能需要获取View绘制前的高度或者宽度,一种的可能情形是我们初始化的时候让某个View是Visible = Gone的,当我们触发某个事件的时候需要它显示并且希望有一
办法就是在项目的AndroidManifest.xml中找到你所指定的activity中加上android:screenOrientation属性,他有以下几个参数: "unspecified":默认值
sdCardExist= Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED); if(sdCardExist){
在实现一个Android的WEB服务客户端,比如微博,论坛客户端时,经常会使用到图片的上传和下载。在这里介绍如何利用HttpClient实现图片的上传和下载功能。 1 图片上传:上传图片时,首先获
下面的方法返回false表示网络不通 // 检测网络 public static boolean checkNetworkAvailable(Context context) { ConnectivityManager connectivity = (ConnectivityManager) context .getSystemService(Context.CONNECTIVITY_SERVIC
public class ImageCache { static private ImageCache cache;// 一个Cache实例 private Hashtable<String, ImageRef> ImageRefs;// 用于Chche内容的存储 private ReferenceQueue<Image> q;// 垃圾Reference的队列 // 继承SoftReferenc
程序如何把自身进行一次截图?或者对某个view对象截图? 由左至右,分别是 bt4 iv iv2 iv3 iv是屏幕截图,上半部分是黑色,下面是bt4的图 iv2填充的是未显示过的一个按钮,截取不到,呈黑色 iv3是复制bt4,跟bt4一样 上述代码包含了bitmap转换为drawable的方式 ImageView iv = (ImageView) findViewById(R.id.ImageV
在使用Timer的时候经常遇到需要更新UI。因为Timer的执行事件是子线程,是无法直接操作UI的。这时候要使用到 Handler Timer 主要属性 scheduleAtFixedRate(要执行的方法,开启后多久执行,间隔时间多久执行) ; scheduleAtFixedRate(new MyTask(),0,1000);//我有一个MyTask类在0毫秒后执行,每间隔1秒执行一次 zhx
/** * Created by peng on 2015/6/16. * 单位转化工具类 */ public class UnitUtil { public static float convertDpToPixel(float dp, Context context) { Resources resources = context.getResources(); DisplayMetrics
public class VibratorUtil { /** * long milliseconds :震动的时长,单位是毫秒 * long[] pattern :自定义震动模式 。数组中数字的含义依次是[静止时长,震动时长,静止时长,震动时长。。。]时长的单位是毫秒 * boolean isRepeat : 是否反复震动,如果是true,反复震动,如果是false,只震动一次 */ publi
public void onSensorChanged(int sensor, float[] values) { synchronized (this) { if (sensor == SensorManager.SENSOR_ORIENTATION) { Log.d(TAG, "onSensorChanged: " + sensor + ", x: " + values[0] + ", y:
通过创建BroadcastReceiver来侦测系统中有关电池Intent(ACTION_BATTERY_CHANGED)的变化,一旦有接收到相关事件,将会读取当前电量情况,并通过TextViews显示在当前屏幕。 public class Main extends Activity { private TextView contentTxt; private BroadcastReceiver
/*实现图片倒影(tested)*/ public class ButtonImageActivity extends Activity { /** Called when the activity is first created. */ private ImageView image_btn; @Override public void onCreate(Bundle savedInstanc
给大家献上一款好用的日志打印工具。大家在平时的开发中用的最多的可能就是 Log.i("",""),Log.e("","")... ,在要查看的日志比较少的情况下,这种方法用起来确实方便,很容易写,也很容易查看,然而不知道大家有没有遇到过这样一种情况,如果你要查看的数据量非常大,然后用Log类打印出来以后,却发现只显示了一部分数据,大部分数据被截断了。 是的,log打印出来的日志长度是有限的,我之前
public class ActionView extends View { private Paint mPaint = new Paint(); private Path mPath = new Path();//手指滑动路径 private Canvas mCanvas;//缓存画布 private Bitmap mBitmap;//缓存图片 private float pointX, po
public String getLocalIpAddress() { try { for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) { NetworkInterface intf = en.nextElement(); for (Enume
public static Drawable resizeImage(Bitmap bitmap, int w, int h) { // load the origial Bitmap Bitmap BitmapOrg = bitmap; int width = BitmapOrg.getWidth(); int height = BitmapOrg.getHeight(); int newWid
public class NetUtil { /** * 检查当前的网络 */ public static boolean checkNet(Context context) { // 判断当前用户手机是否使用WIFI通信 boolean isWIFI = isWIFIConnection(context); // 判断当前用户手机是否使用APN通信 boolean isAPN = isAPNCo
public class NetworkCheck { /** * 网络是否可用 */ public static boolean isNetworkAvailable(Context context) { ConnectivityManager connectivity = (ConnectivityManager) context .getSystemService(Context.CONNE