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();

更多相关文章

  1. 【Android】自定义Dialog如何设置点击事件
  2. Android应用程序组件Content Provider应用实例(4)
  3. Android的postOnAnimation分析
  4. Android菜鸟的成长笔记——PreferenceFragment 与 自定义Prefere
  5. 移植TM**到Android(安卓)| 编译
  6. android中禁止GridView上下滑动的方法
  7. 【Android】树形菜单、扩展下拉菜单BaseExpandableListAdapter、
  8. Android自定义属性,attr format取值类型
  9. Android输入法之如何自定义每个key的属性

随机推荐

  1. Handler发送消息后消息队列的处理
  2. Jenkins奇技淫巧 — 环境配置篇(Android
  3. Android(安卓)Netd介绍
  4. Android中最简单有效的Fragment全局管理
  5. Android之工具通用的Adapter
  6. Android(安卓)NotificationManager简读
  7. Android实现图片自动切换
  8. Android应用防止模拟点击,防范抢红包类似
  9. Android(安卓)在OnCreate获取需要控件的
  10. Android(安卓)-- Activity,Fragment切换动