发布时间:2014-07-26 15:34:03
"EditText + Button" 形成一个 "输入+按键响应" 的案例在android编程中是最常见不过的了。但还有一些细节需要注意:在EditText输入后,点击Button进行请求,软键盘应该自行消失在EditText输入后,不点击Button进行请求,而是直接点击软键盘上的"回车",那么也应该能够正常响应请求针对问题.........【阅读全文】
发布时间:2014-07-26 15:12:07
解决方法,在mainfest.xml中,对那个Activity加:<activity android:name=".activity.HomeActivity"android:windowSoftInputMode="adjustPan|stateHidden" ></activity>android:windowSoftInputModeHow the main window of the activity interacts with the window containing the on-screen soft .........【阅读全文】
发布时间:2014-07-22 16:49:23
sudo apt-get install ffmpeg libavcodec-extra-53avconv -i leco_1406012704017.amr aa.mp3......【阅读全文】
发布时间:2014-07-21 10:25:58
1 /etc/resolv.conf 其实是一个Link它其实指向的是 /run/resolvconf/resolv.conf root@cobbler-cli-ubuntu:/# ll /etc/resolv.conf lrwxrwxrwx 1 root root 29 Oct 9 18:08 /etc/resolv.conf -> ../run/resolvconf/resolv.conf.........【阅读全文】
发布时间:2014-07-11 14:27:52
//wView.loadUrl("file:///android_asset/index.html"); -----打开本包内asset目录下的index.html文件 //wView.loadUrl("content://com.android.htmlfileprovider/sdcard/index.html");-----打开本地sd卡内的index.html文件//wView.loadUrl("http://wap.baidu.com");-----打开指定URL的htm.........【阅读全文】