当前位置: 编程技术>移动开发
本页文章导读:
▪图片安插EditView中 图片插入EditView中
/*在xml中很简单 只要在EditView中设置属性Drawable{Right | Left | Top | Bottom} 在设置中可以使用 */
EditText text = (EditText)findViewById(R.id.text); text.setCompoundDrawables(null, null, getResources().get.........
▪ 播发默认铃声 播放默认铃声
Uri alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
mMediaPlayer = new MediaPlayer();
mMediaPlayer.setDataSource(this, alert);
final AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_S.........
▪ Angry Birds的WP7版本将在四月6日发布 Angry Birds的WP7版本将在4月6日发布
微软今天确认,风靡全球的手机小游戏Angry Birds将在4月6日抵达Windows Phone
7平台,随之而来的还有5款非常受欢迎的程序,植物大战僵尸也在此列。届时,这.........
[1]图片安插EditView中
来源: 互联网 发布时间: 2014-02-18
图片插入EditView中
/*在xml中很简单 只要在EditView中设置属性Drawable{Right | Left | Top | Bottom} 在设置中可以使用 */ EditText text = (EditText)findViewById(R.id.text); text.setCompoundDrawables(null, null, getResources().getDrawable(R.drawable.check_box), null);
[2] 播发默认铃声
来源: 互联网 发布时间: 2014-02-18
播放默认铃声
会出现 Couldn't open fd for content://settings/system/ringtone但是在真机上是可以的
Uri alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM); mMediaPlayer = new MediaPlayer(); mMediaPlayer.setDataSource(this, alert); final AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE); if (audioManager.getStreamVolume(AudioManager.STREAM_ALARM) != 0) { player.setAudioStreamType(AudioManager.STREAM_ALARM); player.setLooping(true); player.prepare(); player.start(); }
会出现 Couldn't open fd for content://settings/system/ringtone但是在真机上是可以的
[3] Angry Birds的WP7版本将在四月6日发布
来源: 互联网 发布时间: 2014-02-18
Angry Birds的WP7版本将在4月6日发布
微软今天确认,风靡全球的手机小游戏Angry Birds将在4月6日抵达Windows Phone 7平台,随之而来的还有5款非常受欢迎的程序,植物大战僵尸也在此列。届时,这些游戏将在应用市场上发布,并整合支持Xbox LIVE Achievements, leaderboards的功能。Angry Birds的开发方两周前曾表示要发布WP7版本,不过由于微软法务的原因被迫推迟,主创Peter Vesterbacka对此戏称,微软的律师实在太多了。
另外五款即将发布的游戏有:
* Doodle Jump
* Plants vs Zombies
* Hydro Thunder Go
* Sonic the Hedgehog 4 Episode I
* geoDefense.
之前,微软Windows Phone 7发布时在首页上贴出了Angry Birds的画面,而那时候这款游戏还并没有WP7版本,因此造成了一些不快。
目前Windows Phone 7 marketplace上大约有8000个应用和30000个注册会员。
最新技术文章: