摘要:
转载地址:http://www.open-open.com/lib/view/open1330657336952.htmlpackage cn.jd3g.utils;import java.lang.ref.SoftReference;import java.util.HashMap;import java.util.LinkedHashMap;import java.util.Map.Entry;import android.graphics.Bitmap;import android.os.Handler;import android.util.Log;import android.wid 阅读全文
摘要:
//声明并实例化LayoutInflater LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);View vi = inflater.inflate(R.layout.main, null);//vi就是main这个布局生成的View,在需要的地方添加使用 阅读全文
摘要:
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h> typedef enum{ UIImageExNormal = 0, UIImageExFull
}UIImageExState; @interface UIImageViewEx : UIImageView<UIGestureRecognizerDelegate>
{ UIView *parentview; //父窗口,即用将UIImageEx所加到的UIView BOOL isPanEnable; ... 阅读全文
摘要:
1.声明组件private LinearLayout.LayoutParams params;private Button top_right_download; private LinearLayout top;2.实例化top=new LinearLayout(context);3.按需要设置属性 top.setOrientation(HORIZONTAL); top.setGravity(Gravity.CENTER_VERTICAL); top.setBackgroundColor(Color.WHITE);4.添加 addView(top, new LinearLayout.... 阅读全文
摘要:
免责申明(必读!):本博客提供的所有教程的翻译原稿均来自于互联网,仅供学习交流之用,切勿进行商业传播。同时,转载时不要移除本申明。如产生任何纠纷,均与本博客所有人、发表该翻译稿之人无任何关系。谢谢合作!原文:http://www.raywenderlich.com/6567/uigesturerecognizer-tutorial-in-ios-5-pinches-pans-and-moreIOS 5手势识别教程:二指拨动、拖移以及更多手势Made iniTyran,Powered ByBenna, review by iven、子龙山人。如果在你的应用程序中需要检测手势,比如点击(tap)、 阅读全文
摘要:
SimpleAdapter simpleadapter = new SimpleAdapter(this, bookList, R.layout.mylistitem,new String[]{"bookName","path"}, new int[]{R.id.bookName,R.id.bookPath}); listView.setAdapter(simpleadapter); listView.setOnItemClickListener(new OnItemClickListener() { @Override public v... 阅读全文
摘要:
/* * searchFile 查找文件并加入到ArrayList 当中去 * @String keyword 查找的关键词 * @File filepath 查找的目录 * */ private void searchFile(String keyword,File filepath) { //判断SD卡是否存在 if (Environment.getExternalStorageState().equals( Environment.MEDIA_MOUNTED)) { File[... 阅读全文
摘要:
很多开发者表示,不知道Android的Drawable和Bitmap之间如何相关转换。下面Android123给大家两种比较简单高效的方法。 一、Bitmap转Drawable Bitmap bm=xxx; //xxx根据你的情况获取 BitmapDrawable bd=BitmapDrawable(bm); Android开发网提示因为BtimapDrawable是Drawable的子类,最终直接使用bd对象即可。二、 Drawable转Bitmap 转成Bitmap对象后,可以将Drawable对象通过Android的SK库存成一个字节输出流,最终还可以保存成为jpg和png的文件。Dra 阅读全文
摘要:
图片的等比例缩放,第一个参数是图片路径,第二个是最终所需要图片的(宽高里取值最大的)的最大值// 限制值MaxSize*(2/3)=实际使用值的比较值IMAGE_MAX_SIZE // 例如:限制图片大小为400,则实际使用的比较值应为400*(2/3) // 260*2/3=390 public static Bitmap decodeFile(String path, int MaxSize) { File f = new File(path); int IMAGE_MAX_SIZE = MaxSize * 2 / 3; Bitmap b = null; try { // De... 阅读全文
摘要:
当我们要对一个文件或者文件夹进行监听的时候,我们可以使用android api中的android.os.FileObserver,下面就来介绍如何使用。1.首先我们要new一个FileObserver对象,并根据自己的文件夹路径对其实例化,如下:FileObserver observer;observer = new FileObserver("文件路径") { @Override public void onEvent(int event, final String file) { ... 阅读全文