当前位置: 编程技术>移动开发
本页文章导读:
▪GridView + ViewFlipper格局界面,模仿“机锋市场” GridView + ViewFlipper布局界面,模仿“机锋市场”
源码在附件中,效果如图片
1 楼
xiaoweixiong
2012-01-17
不是你自己写的吧?
2 楼
zhoujianghai
2012-01-17
x.........
▪ 联网获取内容,utf8格式展示 联网获取内容,utf8格式显示
1.调用:sendGetRequest(uriAPI, "utf-8");2.实现public static String sendGetRequest(String uriAPI, String encoding) { // // HttpGet httpRequest = new HttpGet(uriAPI); // try { // HttpResponse httpRespon.........
▪ emulator-arm.exe起动出错,需指定SDcard大小 emulator-arm.exe启动出错,需指定SDcard大小
今天重新安装了ADT和SDK,使用eclispe调试程序。启动模拟器成功之后,只要一点模拟器界面,就会弹出“emulator-arm.exe出错”这样的错误。 .........
[1]GridView + ViewFlipper格局界面,模仿“机锋市场”
来源: 互联网 发布时间: 2014-02-18
GridView + ViewFlipper布局界面,模仿“机锋市场”
源码在附件中,效果如图片
一行代码 一行代码敲的
源码在附件中,效果如图片
1 楼
xiaoweixiong
2012-01-17
不是你自己写的吧?
2 楼
zhoujianghai
2012-01-17
xiaoweixiong 写道
不是你自己写的吧?
一行代码 一行代码敲的
[2] 联网获取内容,utf8格式展示
来源: 互联网 发布时间: 2014-02-18
联网获取内容,utf8格式显示
1.调用:
sendGetRequest(uriAPI, "utf-8");
2.实现
public static String sendGetRequest(String uriAPI, String encoding) {
//
// HttpGet httpRequest = new HttpGet(uriAPI);
// try {
// HttpResponse httpResponse = new DefaultHttpClient()
// .execute(httpRequest);
// if (httpResponse.getStatusLine().getStatusCode() == 200) {
// String strResult = EntityUtils.toString(
// httpResponse.getEntity(), "UTF-8");
// result = strResult;
// } else {
// httpResponse.getStatusLine().toString();
// }
// } catch (ClientProtocolException e) {
// e.getMessage().toString();
// e.printStackTrace();
// } catch (IOException e) {
// e.getMessage().toString();
// e.printStackTrace();
// } catch (Exception e) {
// e.getMessage().toString();
// e.printStackTrace();
// }
// return result;
URL url;
try {
url = new URL(/blog_article/uriAPI/index.html);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setConnectTimeout(6 * 1000);
if (conn.getResponseCode() == 200) {
InputStream inStream = conn.getInputStream();
byte[] data = readStream(inStream);
return new String(data, encoding);
}
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
1.调用:
sendGetRequest(uriAPI, "utf-8");
2.实现
public static String sendGetRequest(String uriAPI, String encoding) {
//
// HttpGet httpRequest = new HttpGet(uriAPI);
// try {
// HttpResponse httpResponse = new DefaultHttpClient()
// .execute(httpRequest);
// if (httpResponse.getStatusLine().getStatusCode() == 200) {
// String strResult = EntityUtils.toString(
// httpResponse.getEntity(), "UTF-8");
// result = strResult;
// } else {
// httpResponse.getStatusLine().toString();
// }
// } catch (ClientProtocolException e) {
// e.getMessage().toString();
// e.printStackTrace();
// } catch (IOException e) {
// e.getMessage().toString();
// e.printStackTrace();
// } catch (Exception e) {
// e.getMessage().toString();
// e.printStackTrace();
// }
// return result;
URL url;
try {
url = new URL(/blog_article/uriAPI/index.html);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setConnectTimeout(6 * 1000);
if (conn.getResponseCode() == 200) {
InputStream inStream = conn.getInputStream();
byte[] data = readStream(inStream);
return new String(data, encoding);
}
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
[3] emulator-arm.exe起动出错,需指定SDcard大小
来源: 互联网 发布时间: 2014-02-18
emulator-arm.exe启动出错,需指定SDcard大小
今天重新安装了ADT和SDK,使用eclispe调试程序。启动模拟器成功之后,只要一点模拟器界面,就会弹出“emulator-arm.exe出错”这样的错误。
参照android官网,检查了ADT和SDK tools版本对应情况,没有问题。重启了模拟器,eclipse以及重启了电脑都无法解决这个问题。并试过了删掉原有的AVD,创建了新的之后,仍然没有解决这问题。
在几乎要抓狂的时候,我发现我创建的AVD没有指定SDcard的大小;于是便创建了一个新的AVD,指定了SDcard的大小(64M),运行成功!
后来,经查发现,欲运行的程序会对SDcard进行读写。应该是这个原因导致的模拟器出错。
今天重新安装了ADT和SDK,使用eclispe调试程序。启动模拟器成功之后,只要一点模拟器界面,就会弹出“emulator-arm.exe出错”这样的错误。
参照android官网,检查了ADT和SDK tools版本对应情况,没有问题。重启了模拟器,eclipse以及重启了电脑都无法解决这个问题。并试过了删掉原有的AVD,创建了新的之后,仍然没有解决这问题。
在几乎要抓狂的时候,我发现我创建的AVD没有指定SDcard的大小;于是便创建了一个新的AVD,指定了SDcard的大小(64M),运行成功!
后来,经查发现,欲运行的程序会对SDcard进行读写。应该是这个原因导致的模拟器出错。
最新技术文章: