摘要:
android:layout_gravity="top"。android:layout_gravity="bottom" 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_54100_5221[代码]main.xmlview sourceprint?01<?xmlversion="1.0"encoding="utf-8"?>02<LinearLayoutxmlns:Android="http://schemas.android.com/apk/res/android"03Android:orientation="vertical"04Android:layout_width="f 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_54100_5507//获取本地ip地址4748publicString getLocalIpAddress() {49try{50Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces();51while(en.hasMoreElements()) {52NetworkInterface intf = en.nextElement();53Enumeration<InetAddress> enumIpA 阅读全文
摘要:
引用:01//安装apk文件0203privatevoidinstallAPK(File file) {04Intent intent =newIntent(Intent.ACTION_VIEW);05Uri data = Uri.fromFile(file);06String type ="application/vnd.android.package-archive";07intent.setDataAndType(data, type);08startActivity(intent);09}10111213//卸载apk文件1415privatevoiduninsta 阅读全文
摘要:
参考:http://www.cnblogs.com/salam/archive/2011/04/04/2005329.htmlhttp://www.oschina.net/code/snippet_54100_5217 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_54100_1423SurfaceView 由于可以直接从内存或者DMA等硬件接口取得图像数据,因此是个非常重要的绘图容器,网上介绍 SurfaceView的用法有很多,写法也层出不同,例如继承SurfaceView类,或者继承SurfaceHolder.Callback类等,这个可以根据功能实际需要自己选择,我这里就直接在普通的用户界面调用SurfaceHolder的lockCanvas和 unlockCanvasAndPost。对比下面的第二、三两图,三图用.lockCanvas(null),而二图用.lockC 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_163910_6086[代码]AsyncImageLoader.java01packagecn.com.mzba.service;0203importjava.io.InputStream;04importjava.lang.ref.SoftReference;05importjava.net.URL;06importjava.util.HashMap;0708importandroid.graphics.drawable.Drawable;09importandroid.os.Handler;10importand 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_97818_4400[代码]java bean代码01publicclassBean{02privateString title;0304publicvoidsetTitle(String title){05this.title = title;06}0708publicString getTitle(){09returnthis.title;10}11}[代码]android端01packagecom.xu81.tw4a;0203importjava.util.List;0405importandroid.app. 阅读全文
摘要:
引用:http://www.jjos.org/android/2010/05/10/312_webkit-webkit-for-android.html一、WebKit简介WebKit是一个开源的浏览器网页排版引擎,包含WebCore排版引擎和JSCore引擎。WebCore和JSCore引擎来自于KDE项目的KHTML和KJS开源项目。Android平台的Web引擎框架采用了WebKit项目中的WebCore和JSCore部分,上层由Java语言封装,并且作为API提供给Android应用开发者,而底层使用WebKit核心库(WebCore和JSCore)进行网页排版。二、WebKit目录结 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_163910_6094[代码]JavaScript判断方法view sourceprint?1if(navigator.userAgent.match(/Android/i)) {2// Do something!3// Redirect to Android-site?4window.location ='http://android.davidwalsh.name';5}[代码]PHP判断方法1if(strstr($_SERVER['HTTP_USER_AGENT'],'A 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_54100_6227[代码][Java]代码01//打开本包内asset目录下的index.html文件0203wView.loadUrl(" file:///android_asset/index.html ");0405//打开本地sd卡内的index.html文件0607wView.loadUrl("content://com.android.htmlfileprovider/sdcard/index.html");0809//打开指定URL的html文件1011wVie 阅读全文
摘要:
引用:http://www.oschina.net/code/snippet_163910_6189[代码][Java]代码01publicclassConnectionChangeReceiverextends02BroadcastReceiver03{04@Override05publicvoidonReceive( Context context, Intent intent )06{07ConnectivityManager connectivityManager =08(ConnectivityManager) context.getSystemService09( Context. 阅读全文
摘要:
引用:http://hi.baidu.com/chatcoco/blog/item/ac6b2818f51868dea6866971.htmlwebView=(WebView)findViewById(R.id.browser);//其中r.id.browser 是 layout/xx.xml 中的 webviewwebView.getSettings().setJavaScriptEnabled(true);//支持jsWebSettingsws=webView.getSettings();ws.setUseWideViewPort(true);//让浏览器支持用户自定义viewwebVie 阅读全文