A. 安卓手机如何扫描条形码
别太近也别太远,绿色点闪动得越快说明就是在接近正确方法,自己多试试,很简单的
B. 手机下载什么软件可以扫描条码
手机可以使用微信客户端扫描条形码,具体的操作方法参考如下:
1、在手机桌面找到微信图标,点击打开微信客户端。

C. 如何在安卓手机开发利用手机摄像头扫描一维条形码及对其进行本地分析(不联网)、最后储存为文本文件....
导入第三方jar,如QrCodeScan-master,里面已经集成了调用手机摄像头扫描的方法,你只需把它集成到你 的项目中就可以了。至于开发环境:Windows,牛逼的就用Linux。开发工具:eclipse或者android studio都可以
D. 求条形码识别源码
C#语言:public string bar_code(object str, int ch, int cw, int type_code)
{
string strTmp=str.ToString();
string code=strTmp;
strTmp=strTmp.ToLower();
int height=ch;
int width=cw;
strTmp=strTmp.Replace("0", "_|_|__||_||_|");;
strTmp=strTmp.Replace("1", "_||_|__|_|_||");
strTmp=strTmp.Replace("2", "_|_||__|_|_||");
strTmp=strTmp.Replace("3", "_||_||__|_|_|");
strTmp=strTmp.Replace("4", "_|_|__||_|_||");
strTmp=strTmp.Replace("5", "_||_|__||_|_|");
strTmp=strTmp.Replace("7", "_|_|__|_||_||");
strTmp=strTmp.Replace("6", "_|_||__||_|_|");
strTmp=strTmp.Replace("8", "_||_|__|_||_|");
strTmp=strTmp.Replace("9", "_|_||__|_||_|");
strTmp=strTmp.Replace("a", "_||_|_|__|_||");
strTmp=strTmp.Replace("b", "_|_||_|__|_||");
strTmp=strTmp.Replace("c", "_||_||_|__|_|");
strTmp=strTmp.Replace("d", "_|_|_||__|_||");
strTmp=strTmp.Replace("e", "_||_|_||__|_|");
strTmp=strTmp.Replace("f", "_|_||_||__|_|");
strTmp=strTmp.Replace("g", "_|_|_|__||_||");
strTmp=strTmp.Replace("h", "_||_|_|__||_|");
strTmp=strTmp.Replace("i", "_|_||_|__||_|");
strTmp=strTmp.Replace("j", "_|_|_||__||_|");
strTmp=strTmp.Replace("k", "_||_|_|_|__||");
strTmp=strTmp.Replace("l", "_|_||_|_|__||");
strTmp=strTmp.Replace("m", "_||_||_|_|__|");
strTmp=strTmp.Replace("n", "_|_|_||_|__||");
strTmp=strTmp.Replace("o", "_||_|_||_|__|");
strTmp=strTmp.Replace("p", "_|_||_||_|__|");
strTmp=strTmp.Replace("r", "_||_|_|_||__|");
strTmp=strTmp.Replace("q", "_|_|_|_||__||");
strTmp=strTmp.Replace("s", "_|_||_|_||__|");
strTmp=strTmp.Replace("t", "_|_|_||_||__|");
strTmp=strTmp.Replace("u", "_||__|_|_|_||");
strTmp=strTmp.Replace("v", "_|__||_|_|_||");
strTmp=strTmp.Replace("w", "_||__||_|_|_|");
strTmp=strTmp.Replace("x", "_|__|_||_|_||");
strTmp=strTmp.Replace("y", "_||__|_||_|_|");
strTmp=strTmp.Replace("z", "_|__||_||_|_|");
strTmp=strTmp.Replace("-", "_|__|_|_||_||");
strTmp=strTmp.Replace("*", "_|__|_||_||_|");
strTmp=strTmp.Replace("/", "_|__|__|_|__|");
strTmp=strTmp.Replace("%", "_|_|__|__|__|");
strTmp=strTmp.Replace(" ", "_|__|_|__|__|");
strTmp=strTmp.Replace(".", "_||__|_|_||_|");
strTmp=strTmp.Replace("_", "<span style='height:" height ";width:" width ";background:#FFFFFF;'></span>");
strTmp=strTmp.Replace("|", "<span style='height:" height ";width:" width ";background:#000000;'></span>");
if(type_code==1)
{
return strTmp "<BR>" code;
}
else
{
return strTmp;
}
}参考地址: http://www.7747.net/kf/201009/74759.html
E. 关于安卓系统的条码扫描软件,通常手机条码扫描仪软件识别出条码后都...
条码扫描器库存 v2.1
条形码扫描仪应用程序:SCANPET是您完美的库存物资管理员。它是一个通过使用Excel作为产品数据库的条形码扫描仪。您只需用手机上的摄像头来读取项目条形码,它便会在您的Excel文件中查找到该项目的信息。SCANPET将货品管理员、库存物资管理员、Excel数据库和条形码扫描仪集于一身:您可以使用SCANPET来管理您的库存物资登记、掌控您的商店、或者读取条形码,等等。建立属于您自己的项目数据库就如同创建一个Excel文件一样简单。无线网络扫描仪(WiFi终端):如果您需要将扫描的条形码直接载入您电脑上的文件时,使用本程序意味着用手机读取条形码,然后通过Wifi将其发送到您的电脑。它将充当一个Wifi终端
F. android里面 条形码扫描 应该是怎么做的,有没有源码 什么的,发一个给我啊
1、下载ZBar官方SDK程序(下载链接:http://zbar.sourceforge.net/index.html),并打开项目,如下图:
