新浪微博 Github
摘要: 默认TextView如果在一屏幕显示不下的话,是不会有滚动条的,解决方法是在<TextView>外面添加<ScrollView>标签; <ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" ... 阅读全文
posted @ 2012-07-05 23:11 xiazdong 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 一、网络图片查看器需求存在一个Web服务器,其中存在一个图片,在Android客户端能够访问这张图片并在Android客户端显示;当点击“提交”后,则会显示指定服务器的图片;需要注意的一点是:我们不能使用localhost表示本机,而需要使用局域网的IP地址,否则会抛Connection confused异常;二、核心代码介绍在AndroidManifest.xml中加入:<uses-permission android:name="android.permission.INTERNET"/>(1)URL url = new URL("http://. 阅读全文
posted @ 2012-07-05 23:05 xiazdong 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 错误提示:Failed to install helloworld.apk on device 'emulator-5554': timeout或者the user data image is used原因:由于模拟器已经开启而没有关闭或者非法关闭引起的。解决方法:删除 C:\Documents and Settings\Administrator\.android\avd\对应版本.avd下所有以.lock结尾的文件夹。或者Failed to install *.apk on device *:timeout Launch canceled!还有一种办法:在window-&g 阅读全文
posted @ 2012-07-05 12:57 xiazdong 阅读(175) 评论(0) 推荐(0) 编辑