code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
package com.zz.common.app;
import java.io.File;
import java.io.FileOutputStream;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.lang.Thread.UncaughtExceptionHandler;
import java.lang.reflect.Field;
import java.util.Properties;
import com.zz.common.utils.DateTime... | zzdache | trunk/android/Common/sdk/com/zz/common/app/CrashController.java | Java | epl | 4,435 |
package com.zz.common.app;
import java.util.Collection;
import java.util.HashMap;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.view.View;
import android.widget.TabHost;
import android.widget.TabHost.OnTabChangeListener;
import android.wid... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseFrameActivity.java | Java | epl | 4,302 |
package com.zz.common.app;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import com.zz.common.utils.ZLog;
import android.app.Application;
import android.os.Process;
public class BaseApplication extends Application implements CrashController.OnCrashListener {
public static String sCr... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseApplication.java | Java | epl | 1,829 |
package com.zz.common.app;
import com.zz.common.app.BaseApplication.IBaseApplicationattachment;
import android.content.BroadcastReceiver;
public abstract class BaseBroadcastReceiver extends BroadcastReceiver implements IBaseApplicationattachment {
@Override // BaseApplication.IBaseApplicationattachment
... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseBroadcastReceiver.java | Java | epl | 424 |
package com.zz.common.app;
public final class BaseConfig {
public static final String TAG = "zz";
// /* package */ static final
}
| zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseConfig.java | Java | epl | 142 |
package com.zz.common.app;
import android.content.ContentResolver;
import android.content.Intent;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
public abstract class BaseFrame {
... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseFrame.java | Java | epl | 2,425 |
package com.zz.common.app;
import com.zz.common.app.BaseApplication.IBaseApplicationattachment;
import com.zz.common.utils.ZLog;
import android.app.Service;
public abstract class BaseService extends Service implements IBaseApplicationattachment {
@Override
public void onCreate() {
super.onCreate();
... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseService.java | Java | epl | 696 |
package com.zz.common.app;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import com.zz.common.app.BaseApplication.IBaseApplicationattachment;
import com.zz.common.utils.ZLog;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class BaseActivity... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseActivity.java | Java | epl | 3,519 |
package com.zz.common.app;
import com.zz.common.app.BaseApplication.IBaseApplicationattachment;
import android.content.ContentProvider;
public abstract class BaseContentProvider extends ContentProvider implements IBaseApplicationattachment {
@Override // BaseApplication.IBaseApplicationattachment
public ... | zzdache | trunk/android/Common/sdk/com/zz/common/app/BaseContentProvider.java | Java | epl | 417 |
package com.zz.common.widget;
import android.widget.Button;
import android.widget.ImageView;
public class SizeCallBackForMenu implements SizeCallBack {
private Button menu;
private int menuWidth;
public SizeCallBackForMenu(Button menu){
super();
this.menu = menu;
}
@Override
public void... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/SizeCallBackForMenu.java | Java | epl | 600 |
package com.zz.common.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ScrollView;
public class ZScrollView extends ScrollView {
public ZScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
setOverScrollMode(ScrollView.OVER_SCRO... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZScrollView.java | Java | epl | 455 |
package com.zz.common.widget;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.os.Handler;
import android.util.AttributeSet;
import android.view.Gravity;
import android.view.MotionEvent;
import... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZBladeView.java | Java | epl | 3,972 |
package com.zz.common.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ExpandableListView;
public class ZExpandableListView extends ExpandableListView {
public ZExpandableListView(Context context) {
super(context);
}
public ZExpandableListView(Context context, Att... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZExpandableListView.java | Java | epl | 490 |
package com.zz.common.widget;
/**
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZPinnedHeaderListView.java | Java | epl | 6,220 |
package com.zz.common.widget;
import android.content.Context;
import android.os.Handler;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
import android.widget.Button;
impor... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZHorizontalScrollView.java | Java | epl | 5,216 |
package com.zz.common.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ListView;
public class ZListView extends ListView {
public ZListView(Context context) {
super(context);
}
public ZListView(Context context, AttributeSet attrs) {
super(context, a... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZListView.java | Java | epl | 451 |
package com.zz.common.widget;
import com.zz.common.utils.ZLog;
import android.content.Context;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
public class ZFixedGridView extends ViewGroup {
... | zzdache | trunk/android/Common/sdk/com/zz/common/widget/ZFixedGridView.java | Java | epl | 2,863 |
package com.zz.common.widget;
public interface SizeCallBack {
public void onGlobalLayout();
public void getViewSize(int idx, int width, int height, int[] dims);
}
| zzdache | trunk/android/Common/sdk/com/zz/common/widget/SizeCallBack.java | Java | epl | 176 |
package com.zz.common.utils;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import android.util.Base64;
public abstract class AlgorithmUtil {
public static String md5(String key) {
try {
char[] hex = {'0', '1', '2', '3', '4', '5', '6', ... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/AlgorithmUtil.java | Java | epl | 1,189 |
package com.zz.common.utils;
import android.content.Context;
import android.content.pm.PackageManager.NameNotFoundException;
public abstract class PackageUtil {
public static int getVerCode(Context context) {
String packageName = context.getPackageName();
return getVerCode(context, packageName);
}
... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/PackageUtil.java | Java | epl | 1,021 |
package com.zz.common.utils;
public class HexUtil {
private static final char[] digits = new char[] { '0', '1', '2', '3', '4',//
'5', '6', '7', '8', '9',//
'A', 'B', 'C', 'D', 'E',//
'F' };
public static final byte[] emptybytes = new byte[0];
/**
* @return String Hex String
*/
public ... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/HexUtil.java | Java | epl | 2,171 |
package com.zz.common.utils;
import android.content.Context;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.telephony.TelephonyManager;
public abstract class DeviceUtil {
public static int px2dip(Context context, float pxValue){
final float scale = context.... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/DeviceUtil.java | Java | epl | 1,919 |
package com.zz.common.utils;
import java.io.File;
import android.os.Environment;
import android.os.StatFs;
public abstract class StorageUtil {
public static String getSDCardDir() {
String path = Environment.getExternalStorageDirectory().getPath();
if(null != path && !path.endsWith("/")) {
path = p... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/StorageUtil.java | Java | epl | 1,254 |
package com.zz.common.utils;
import android.util.Log;
public final class ZLog {
/**
* only console, only debug version;
*/
public static final int LOG_LEVEL_DEBUG = 0x01;
/**
* console and local file, only debug version;
*/
public static final int LOG_LEVEL_DEV = 0x02;
/**
* cons... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/ZLog.java | Java | epl | 1,329 |
package com.zz.common.utils;
import java.net.URLEncoder;
public class URLEncoderUtil {
public static String string2DoubleEncode(String originalString){
String result = null;
try {
result = URLEncoder.encode(originalString,"UTF-8");
result = URLEncoder.encode(result,"UTF-8");
} catch (Excepti... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/URLEncoderUtil.java | Java | epl | 384 |
package com.zz.common.utils;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.graphics.Bitmap;
import android.graphics.Bitmap.Config;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Ma... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/ImageUtil.java | Java | epl | 9,506 |
package com.zz.common.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
public abstract class DateTimeUtil {
public static String getDateString(long ms) {
return getDateString(ms, "yyyy-MM-dd HH:mm:ss");
}
public static String getDateString(long ms, String format) {
... | zzdache | trunk/android/Common/sdk/com/zz/common/utils/DateTimeUtil.java | Java | epl | 1,001 |
package com.zz.cc.business.data;
public class StoreBasicInfo {
public String mUserName;
public String mPwd;
public String mStoreName;
public String mAddress;
public String mPhoneNum;
public String mID;
}
| zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/StoreBasicInfo.java | Java | epl | 211 |
package com.zz.cc.business.data;
public class ServiceType {
private static final ServiceType []sServiceTypes = new ServiceType[] {
new ServiceType(0x100001, "维修"),
new ServiceType(0x100002, "美容"),
new ServiceType(0x100003, "洗车"),
};
public long mTypeId;
public String mTypeName;
private ServiceType(long ... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/ServiceType.java | Java | epl | 489 |
package com.zz.cc.business.data;
import android.content.Context;
import com.zz.cc.business.BusinessApplication;
import com.zz.cc.common.data.IFileManager;
import com.zz.common.tools.ImageLoader.IUrlLocalFilePathCreator;
import com.zz.common.utils.AlgorithmUtil;
import com.zz.common.utils.FileUtil;
import com... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/FileManager.java | Java | epl | 1,532 |
package com.zz.cc.business.data;
import java.util.List;
import com.zz.cc.business.BusinessApplication;
import android.app.Application;
public class ModelCenter {
private static final String TAG = "ModelCenter";
private static ModelCenter sCenter;
private Application mContext;
public static ModelCenter get... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/ModelCenter.java | Java | epl | 585 |
package com.zz.cc.business.data;
import java.util.ArrayList;
import java.util.List;
public class ServiceInfo {
public String mUserName;
public String mCarNum;
public String mPhoneNum;
public String mServiceTime;
public String mCost;
public int mServiceCount;
public static List<ServiceInfo> gener... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/ServiceInfo.java | Java | epl | 855 |
package com.zz.cc.business.data;
import java.util.ArrayList;
import java.util.List;
public class StoreDetailInfo {
public float mServicePrice;
public float mVipPrice;
public String mSummary;
public final List<ServiceType> mServiceTypes = new ArrayList<ServiceType>();
public final List<String> mIconUrls = n... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/StoreDetailInfo.java | Java | epl | 348 |
package com.zz.cc.business.data;
public abstract class BoxAction {
public static final int ACTION_LOGIN = 0x10000;
public static final int ACTION_LOGOUT = ACTION_LOGIN + 1;
}
| zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/BoxAction.java | Java | epl | 179 |
package com.zz.cc.business.data;
import com.zz.common.tools.ImageLoader;
public class BsImageLoader extends ImageLoader{
private static BsImageLoader sLoader;
public static BsImageLoader getLoader() {
if(null == sLoader) {
FileManager fm = FileManager.getInstance();
sLoader = new BsImageLoader... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/data/BsImageLoader.java | Java | epl | 452 |
package com.zz.cc.business.view;
import com.zz.cc.business.R;
import com.zz.common.tools.WeakReferenceHandler;
import android.app.Dialog;
import android.content.Context;
import android.content.res.Resources;
import android.os.Handler.Callback;
import android.os.Looper;
import android.os.Message;
import... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/view/ActionSheet.java | Java | epl | 8,697 |
package com.zz.cc.business.app;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.RadioButton;
import android.wi... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/BaseInfoActivity.java | Java | epl | 2,854 |
package com.zz.cc.business.app;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.E... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/LoginActivity.java | Java | epl | 3,461 |
package com.zz.cc.business.app;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler.Callback;
import android.os.Message;
import com.zz.cc.business.R;
import com.zz.cc.business.R.anim;
import com.zz.cc.business.R.layout;
import com.zz.common.app.BaseActivity;
import com.zz.com... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/StartUpActivity.java | Java | epl | 1,383 |
package com.zz.cc.business.app;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.Toast;
import com.google.zxing.client.android.encode.QRCodeEncoder;
import com.zz.c... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/QrCodeActivity.java | Java | epl | 1,406 |
package com.zz.cc.business.app;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import com.zz.cc.business.R;
import... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/ReserveListActivity.java | Java | epl | 2,879 |
package com.zz.cc.business.app;
import com.zz.common.app.BaseActivity;
public class RegisterActivity extends BaseActivity {
}
| zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/RegisterActivity.java | Java | epl | 136 |
package com.zz.cc.business.app;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import com.zz.cc.business.R;
import com.zz.cc.business.R.anim;
import com.zz.cc.business.R.id;
import com.zz.cc.busines... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/ForgetPasswordActivity.java | Java | epl | 1,208 |
package com.zz.cc.business.app;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import com.zz.cc.business.R;
import... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/ServiceListActivity.java | Java | epl | 2,310 |
package com.zz.cc.business.app;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/OtherActivity.java | Java | epl | 3,012 |
package com.zz.cc.business.app;
import java.io.File;
import java.io.IOException;
import android.app.Activity;
import android.content.DialogInterface;
import android.content.DialogInterface.OnCancelListener;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.Bitmap;
impor... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/BusinessDetailActivity.java | Java | epl | 6,913 |
package com.zz.cc.business.app;
import java.io.InputStream;
import android.content.Intent;
import android.content.res.AssetManager;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import android.view.V... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/UserGuideActivity.java | Java | epl | 6,427 |
package com.zz.cc.business.app;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.BaseAdapte... | zzdache | trunk/android/cc/Business/src/com/zz/cc/business/app/MainActivity.java | Java | epl | 3,831 |
package com.zz.cc.business;
import com.zz.cc.business.data.FileManager;
import com.zz.common.app.BaseApplication;
public class BusinessApplication extends BaseApplication {
@Override
public void onCreate() {
sCrashPath = FileManager.getInstance().getWorkDir();
super.onCreate();
}
}
| zzdache | trunk/android/cc/Business/src/com/zz/cc/business/BusinessApplication.java | Java | epl | 306 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/BarcodeFormat.java | Java | epl | 1,516 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/AmbientLightManager.java | Java | epl | 2,845 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/InactivityTimer.java | Java | epl | 3,329 |
/*
* Copyright (C) 2013 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/DecodeHintManager.java | Java | epl | 8,300 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/DecodeFormatManager.java | Java | epl | 3,791 |
/*
* Copyright (C) 2011 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/IntentSource.java | Java | epl | 741 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/FinishListener.java | Java | epl | 1,304 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/ViewfinderView.java | Java | epl | 6,714 |
/*
* Copyright (C) 2011 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/encode/MECARDContactEncoder.java | Java | epl | 4,082 |
/*
* Copyright (C) 2011 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/encode/Formatter.java | Java | epl | 838 |
/*
* Copyright (C) 2011 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/encode/VCardContactEncoder.java | Java | epl | 3,739 |
/*
* Copyright (C) 2011 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/encode/ContactEncoder.java | Java | epl | 3,251 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/encode/QRCodeEncoder.java | Java | epl | 13,141 |
/*
* Copyright (C) 2009 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/ViewfinderResultPointCallback.java | Java | epl | 1,093 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/DecodeHandler.java | Java | epl | 4,321 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/DecodeActivityHandler.java | Java | epl | 4,971 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/Contents.java | Java | epl | 3,768 |
package com.google.zxing.client.android;
public final class Action {
public static final int ACTION_DECODE = 0x10000;
public static final int ACTION_QUIT = ACTION_DECODE + 1;
public static final int ACTION_DECODE_SUCCESS = ACTION_QUIT + 1;
public static final int ACTION_DECODE_FAILED = ACTION_DECODE_SUCCESS + 1;... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/Action.java | Java | epl | 484 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/FrontLightMode.java | Java | epl | 1,034 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/PreviewCallback.java | Java | epl | 1,865 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/open/GingerbreadOpenCameraInterface.java | Java | epl | 1,902 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/open/DefaultOpenCameraInterface.java | Java | epl | 955 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/open/OpenCameraInterface.java | Java | epl | 957 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/open/OpenCameraManager.java | Java | epl | 1,155 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/exposure/DefaultExposureInterface.java | Java | epl | 882 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/exposure/ExposureInterface.java | Java | epl | 914 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/exposure/ExposureManager.java | Java | epl | 1,029 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/exposure/FroyoExposureInterface.java | Java | epl | 2,007 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/AutoFocusManager.java | Java | epl | 3,509 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/CameraManager.java | Java | epl | 11,148 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/camera/CameraConfigurationManager.java | Java | epl | 10,321 |
/*
* Copyright 2011 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/HttpHelper.java | Java | epl | 8,405 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/BeepManager.java | Java | epl | 3,590 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/Intents.java | Java | epl | 9,639 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/DecodeThread.java | Java | epl | 2,982 |
/*
* Copyright (C) 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/CaptureActivity.java | Java | epl | 16,533 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/common/executor/AsyncTaskExecInterface.java | Java | epl | 791 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/common/executor/DefaultAsyncTaskExecInterface.java | Java | epl | 1,045 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/common/executor/AsyncTaskExecManager.java | Java | epl | 1,064 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/common/executor/HoneycombAsyncTaskExecInterface.java | Java | epl | 1,157 |
/*
* Copyright (C) 2012 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/android/common/PlatformSupportManager.java | Java | epl | 3,954 |
/*
* Copyright 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/TelResultParser.java | Java | epl | 1,383 |
/*
* Copyright 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/TelParsedResult.java | Java | epl | 1,366 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/TextParsedResult.java | Java | epl | 1,212 |
/*
* Copyright (C) 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/ExpandedProductResultParser.java | Java | epl | 6,815 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/ParsedResult.java | Java | epl | 1,995 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/ProductResultParser.java | Java | epl | 1,916 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/AddressBookParsedResult.java | Java | epl | 5,715 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/ProductParsedResult.java | Java | epl | 1,331 |
/*
* Copyright 2008 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/AddressBookAUResultParser.java | Java | epl | 3,538 |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | zzdache | trunk/android/cc/CcCommon/sdk/com/google/zxing/client/result/URIResultParser.java | Java | epl | 2,210 |