- 浏览: 220763 次
- 性别:
- 来自: 襄樊
最新评论
-
jin367411763:
[flash=200,200][url][img][list] ...
javax.xml.stream.FactoryConfigurationError: Provider com.bea.xml.stream.MXParser -
lxyzxq2008:
这两个包都没有这个类的
javax.xml.stream.FactoryConfigurationError: Provider com.bea.xml.stream.MXParser -
bewithme:
HTTP/1.1 407 Proxy Authenticati ...
httpclient4.x配置带用户名和密码的代理 -
bewithme:
我使用这个方法时会报严重: Proxy authenticat ...
httpclient4.x配置带用户名和密码的代理 -
taowayi:
android开发者社区 http://www.juapk. ...
android 开发 经典网站
文章列表
mapview中添加气泡的OnFocusChangeListener事件不起作用。耗费了我几天时间。终于发现是因为初始化ItemizedOverlay的构造方法是必须添加一个defaultMarker。
httpclient4配置带用户名和密码的代理
- 博客分类:
- java
公司的网络需要代理,且需要用域、户名、密码。这种方式本人已验证通过。
public static void main(String[] args) throws Exception {
DefaultHttpClient httpclient = new DefaultHttpClient(); try { AuthScope authscope=new AuthScope(PROXY_HOST, PROXY_PORT); Credentials credentials=new NTCredentials(PROXY_USERNA ...
今天发现程序有个bug,listview的item不能选中,核实后确认原因是由于item中有button
参考解释:
http://www.cnblogs.com/ycmoon/archive/2011/04/25/2027728.html
我们看到了一行代码定义的变量的意思是“当前View将屏蔽他所有子控件的Focus状态,即便这些子控件是可以Focus的”,其实这段话的意思就是这个变量代表着当前的View将不顾其子控件是否可以Focus自身接管了所有的Focus,通常默认能获得focus的控件有Button,Checkable继承来的所有控件,这就意味着如果你的自定义ListVi ...
eclipse中在debug模式下调试打断点,按F5/F6/F8快捷键不启作用,非按这几个对应的图标才起着用。起初还以为机子中病毒了。后来才想起来,用来有道,它打开程序快捷键就是F8,导致快捷键冲突。
告诫自己,别以为出现问题都推到病毒身上。万事皆有因。很可能就隐藏着大问题。
今天,犯了一个很低级的错误。知道有人给我指出,我才恍然大悟。我有点怀疑,那是我的思维吗?可那确实是我写的程序。很失落的感觉。
其实,或许我要求的太多,我有个很爱我 的女友,有亲人的支持,有我自己的一点技能,不用看人的脸色,不用去追逐名利,我过着逍遥自在的生活,我随心而活。我已经很幸福了。突然间我那么感触,原来我到生活这么美好。感谢我所拥有的一切,感谢我 所遇到的一切人和物。因为有这些,生活才那么美好。
如下:会造成imagebutton被遮盖
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill ...
D:\publish>"C:\Program Files\Java\jdk1.6.0_16\bin\keytool.exe" -genkey -alias saul.keystore -keyalg RSA -validity 20000 -keystore d:\publish\saul.keystore
package test;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.Credentials;
import org.apache.http.auth.NTCredentials;
import org.apache.http.client.methods.HttpGet;
impo ...
1 通过tomcat命令,tomcat正常启动,页面可访问;
2 通过myeclipse启动tomcat,tomcat启动正常,页面能正常访问;
以下为启动日志
2011-4-27 22:44:32 org.apache.catalina.core.AprLifecycleListener init信息: The APR based Apache Tomcat Native library which allows op ...
android中不要使用for中嵌套return来实现逻辑,貌似有问题。
如多个for循环嵌套时通过break,continue不够用时就可以通过设置标识位的状态来实现功能,突然有种接力赛的感觉。
哈哈。开发也如此美好哈!
public View getView(int position, View convertView, ViewGroup parent)
适配器中的convertView刚开始是null,待画到哪一行的时候才初始化。也就是一行一行画出来的。
具体的初始化方法大致如下:
if (convertView == null) {
convertView = mInflater.inflate(R.layout.my_list_item, null);
}
SharedPreferences setting=this.getSharedPreferences("haha", 0);
Editor editor=setting.edit();
editor.putString("names", "saul");
editor.commit();
String str=setting.getString("names", "");
Log. ...
一个愚蠢的调用View时出现的错误
- 博客分类:
- android
今天调用tv = (TextView) this.findViewById(R.id.tv);居然返回空指针。奇怪刚还好好的,后来一看,不下心把setContentView(R.layout.main);给干掉了。我说怎么连调用view都搞空指针。引以为戒。
关于looper说明二
- 博客分类:
- android
在非主线程中通过Looper.myLooper()获取looper时,如果没有调用Looper.prepare(),获取的looper为null,Looper.prepare()是用来为当前线程创建消息队列的,也就是如果当前线程没有消息队列,将无法创
建Looper。