摘要:
如果直接在Activity的OnCreate()方法中直接获取View的高度和宽度,会发现返回的值都是0。所以可以用post()方法解决上述问题。 btnChange.post(new Runnable() { @Override public voi... 阅读全文
摘要:
package com.example.android_asynctask;import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.client.HttpClient;i... 阅读全文
摘要:
1、适屏提取手机的图片库,并且进行选择图片的功能:Button onClick:Intent intent = new Intent( Intent.ACTION_PICK, android.provider.MediaSt... 阅读全文
摘要:
http://blog.csdn.net/zuolongsnail/article/details/6453468 阅读全文
摘要:
1、定义图片地址private static String URL_PATH = "http://192.168.100.244:8080/HelloWorld/ZXC.gif";2、获得服务器端的数据,以InputStream形式返回* * 获得服务器端的数据,以InputStream形式返回 *... 阅读全文
摘要:
1、安装zsu-v1191048.exehttp://pan.baidu.com/s/1qW0RhNY 安装好后打开,会有如下界面2、将QLN320通过USB连接至电脑、安装好驱动(自动),点击刷新打印机列表。3、点击打印机设置中的配置打印机连接性。 a、选择无线下一步。 b、选择静态IP ,... 阅读全文
摘要:
解决方法1:在Activity的onCreate()方法中加入如下代码: StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectN... 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace SINOStockBL 7 { 8 public class StrSplitHelp 9 {10 #region 拆分字符串11 /// 12 /// 根据字符串拆分字符串13 /// 14 /// 要拆分的字符串15 /// 拆分符16 /// ... 阅读全文
摘要:
1 private string portName = ""; //串口 2 private int baudRate = 0; //速率 3 private int dataBits = 0; //数据位 4 int scanNum = 0; 5 int noRead = 0; 6 string strReceive = ""; 7 string serialNumber = ""; 8 string url = "";... 阅读全文
摘要:
private void txtBarCode_KeyPress(object sender, KeyPressEventArgs e) { int ikc = (int)e.KeyChar; if ((!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "[0-9]")) && ((int)e.KeyChar) != 8) { e.Handled = true; return; } } 阅读全文