随笔分类 - android
摘要:键盘隐藏 删除 键盘隐藏 bottom 键盘隐藏
阅读全文
摘要:1 webView= (WebView) findViewById(R.id.webView); 2 3 WebSettings webSetting =webView.getSettings(); 4 webSetting.setAllowFileAccess(true); 5 webSetting.setJavaSc...
阅读全文
摘要:来源:http://source.android.com/source/build-numbers.html
阅读全文
摘要:如此这般配置即可。在AndroidManifest.xml文件中 1 <activity 2 android:name="com.lxXxxxyActivity" 3 android:launchMode="singleInstance" > 4 </activity> 这样设置就好了。在Andro
阅读全文
摘要:1 adb shell su -c "chmod 777 /data"2 adb shell su -c "chmod 777 /data/data"3 adb shell su -c "chmod 777 /data/data/com.jushuitan.JustErp"4 adb shell s...
阅读全文
摘要:1 C:\Users\sky\.android>keytool -list -v -keystore sky.jksJAVA_HOMEC:\Program Files\Java\jdk1.7.0_75Path%SystemRoot%\system32;%SystemRoot%;%SystemRoot...
阅读全文
摘要:1)第一种,也是最长见的添加方法(一下都以Button为例)1 Button btn = (Button) findViewById(R.id.myButton);2 btn .setOnClickListener(new View.OnClickListener() {3 publ...
阅读全文