Android编程15个很有用的代码片段

来源:未知 责任编辑:智问网络 发表时间:2013-11-08 08:45 点击:

Android代码

1:查看是否有存储卡插入string status=environment.getexternalstoragestate(); if(status.equals(enviroment.media_mounted)) {    说明有sd卡插入}

2:让某个activity透明oncreate中不设layout this.settheme(r.style.theme_transparent); 以下是theme_transparent的定义(注意transparent_bg是一副透明的图片)

3:在屏幕元素中设置句柄   使用activity.findviewbyid来取得屏幕上的元素的句柄. 使用该句柄您可以设置或获取任何该对象外露的值.   textview msgtextview = (textview)findviewbyid(r.id.msg);   msgtextview.settext(r.string.push_me);

4:发送短信             string body=”this is mms demo”;            intent mmsintent = new intent(intent.action_sendto, uri.fromparts(”smsto”, number, null));            mmsintent.putextra(messaging.key_action_sendto_message_body, body);            mmsintent.putextra(messaging.key_action_sendto_compose_mode, true);            mmsintent.putextra(messaging.key_action_sendto_exit_on_sent, true);             startactivity(mmsintent);

5:发送彩信            stringbuilder sb = new stringbuilder();             sb.append(”file://”);             sb.append(fd.getabsolutefile());             intent intent = new intent(intent.action_sendto, uri.fromparts(”mmsto”, number, null));             // below extra datas are all optional.             intent.putextra(messaging.key_action_sendto_message_subject, subject);             intent.putextra(messaging.key_action_sendto_message_body, body);             intent.putextra(messaging.key_action_sendto_content_uri, sb.tostring());             intent.putextra(messaging.key_action_sendto_compose_mode, composemode);             intent.putextra(messaging.key_action_sendto_exit_on_sent, exitonsent);             startactivity(intent);

7:发送mail              mime = “img/jpg”;             shareintent.setdataandtype(uri.fromfile(fd), mime);             shareintent.putextra(intent.extra_stream, uri.fromfile(fd));             shareintent.putextra(intent.extra_subject, subject);             shareintent.putextra(intent.extra_text, body);

8:注册一个broadcastreceiver registerreceiver(mmasterresetreciever, new intentfilter(”oms.action.masterreset”)); private broadcastreceiver mmasterresetreciever = new broadcastreceiver() {         public void onreceive(context context, intent intent){             string action = intent.getaction();             if(”oms.action.masterreset”.equals(action)){                 recoverdefaultconfig();             }         }     };

9:定义contentobserver,监听某个数据表private contentobserver mdownloadsobserver = new downloadschangeobserver(downloads.content_uri); private class downloadschangeobserver extends contentobserver {         public downloadschangeobserver(uri uri) {             super(new handler());         }         @override         public void onchange(boolean selfchange) {}          }   

10:获得 手机ua public string getuseragent()     {            string user_agent = productproperties.get(productproperties.user_agent_key, null);             return user_agent;     }

11:清空手机上cookiecookiesyncmanager.createinstance(getapplicationcontext());         cookiemanager.getinstance().removeallcookie();

12:建立gprs连接    //dial the gprs link.     private boolean opendataconnection() {         // set up data connection.         dataconnection conn = dataconnection.getinstance();                 if (connectmode == 0) {                 ret = conn.openconnection(mcontext, “cmwap”, “cmwap”, “cmwap”);             } else {                 ret = conn.openconnection(mcontext, “cmnet”, “”, “”);             }     }

13:preferenceactivity 用法public class setting extends preferenceactivity {     public void oncreate(bundle savedinstancestate) {         super.oncreate(savedinstancestate);         addpreferencesfromresource(r.xml.settings);     } }setting.xml:             android:key=”seting2″             android:title=”@string/seting2″             android:summary=”@string/seting2″/>             android:key=”seting1″             android:title=”@string/seting1″             android:summaryoff=”@string/seting1summaryoff”             android:summaryon=”@stringseting1summaryoff”/>

14:通过httpclient从指定server获取数据              defaulthttpclient httpclient = new defaulthttpclient();             httpget method = new httpget(“http://www.baidu.com/1.html”);             httpresponse resp;             reader reader = null;             try {                 // allclientpnames.timeout                 httpparams params = new basichttpparams();                 params.setintparameter(allclientpnames.connection_timeout, 10000);                 httpclient.setparams(params);                 resp = httpclient.execute(method);                 int status = resp.getstatusline().getstatuscode();                 if (status != httpstatus.sc_ok) return false;                 // httpstatus.sc_ok;                 return true;             } catch (clientprotocolexception e) {                 // todo auto-generated catch block                 e.printstacktrace();             } catch (ioexception e) {                 // todo auto-generated catch block                 e.printstacktrace();             } finally {                 if (reader != null) try {                     reader.close();                 } catch (ioexception e) {                     // todo auto-generated catch block                     e.printstacktrace();                 }             }

15:显示toast toast.maketext(this._getapplicationcontext(), r.string._item, toast.length_short).show();    

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Android 完全退出程序
    • 原创:Android应用开发-Andorid歌词秀,含源码
    • android 屏幕保护
    • Android手机软件汉化教程---第四课 dex文件汉化
    • 众多Android 开源项目推荐,给力工作给力学习
    • Android Audio代码分析4
    • Android得到已安装的应用程序信息!
    • Android开发者指南(29) —— USB Host and Accessory
    • Android成长的幕后推手:工程师鲁宾
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1