Android编程14个很有用的代码片段.pdf
《Android编程14个很有用的代码片段.pdf》由会员分享,可在线阅读,更多相关《Android编程14个很有用的代码片段.pdf(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、 Android 编程 14 个很有用的代码片段 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.
2、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_ACTI
3、ON_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 I
4、ntent(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();
5、intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE,composeMode);intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT,exitOnSent);startActivity(intent);6:显示 toast Toast.makeText(this._getApplicationContext(),R.string._item,Toast.LENGTH_SHORT).show();7:发送 Mail mime=“img/jpg”;shareIntent.setD
6、ataAndType(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”);privat
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Android 编程 14 有用 代码 片段
限制150内