上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 62 下一页
  2014年8月31日
摘要: Android中音频和视频的播放我们最先想到的就是MediaPlayer类了,该类提供了播放、暂停、停止、和重复播放等方法。该类位于android.media包下,详见API文档。其实除了这个类还有一个音乐播放类那就是SoundPool,这两个类各有不同分析一下便于大家理解MediaPlayer:此... 阅读全文
posted @ 2014-08-31 12:02 大米稀饭 阅读(2804) 评论(0) 推荐(0)
摘要: private Vibrator vibrator;取得震动服务的句柄vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);或者vibrator = (Vibrator)getApplication().getSystemService(S... 阅读全文
posted @ 2014-08-31 12:01 大米稀饭 阅读(245) 评论(0) 推荐(0)
摘要: IMEI号,IESI号,手机型号:privatevoidgetInfo(){TelephonyManagermTm=(TelephonyManager)getSystemService(TELEPHONY_SERVICE);Stringimei=mTm.getDeviceId();Stringims... 阅读全文
posted @ 2014-08-31 11:58 大米稀饭 阅读(293) 评论(0) 推荐(0)
摘要: 开发Android软件中我们可能经常需播放多媒体声音文件,一般使用MediaPlayer类但该类占用资源较多,对于游戏等应用可能不是很适合,SoundPool类在SDK的android.media.SoundPool,顾名思义是声音池的意思。主要播放一些较短的声音片段,可以从程序的资源或文件系统加载... 阅读全文
posted @ 2014-08-31 11:53 大米稀饭 阅读(343) 评论(0) 推荐(0)
  2014年8月30日
摘要: 1 public void getPhoneInfo() { 2 TelephonyManager tm = (TelephonyManager) this.getSystemService(TELEPHONY_SERVICE); 3 String mtyb = android.os.B... 阅读全文
posted @ 2014-08-30 20:10 大米稀饭 阅读(227) 评论(0) 推荐(0)
摘要: 1 private String getTotalMemory() { 2 String str1 = "/proc/meminfo";// 系统内存信息文件 3 String str2; 4 String[] arrayOfString; 5 ... 阅读全文
posted @ 2014-08-30 20:09 大米稀饭 阅读(415) 评论(0) 推荐(0)
  2014年8月29日
摘要: 1 import android.content.Context; 2 import android.graphics.Canvas; 3 import android.graphics.Color; 4 import android.graphics.Paint; 5 import androi... 阅读全文
posted @ 2014-08-29 19:18 大米稀饭 阅读(231) 评论(0) 推荐(0)
摘要: android.permission.ACCESS_CHECKIN_PROPERTIES允许读写访问”properties”表在checkin数据库中,改值可以修改上传( Allows read/write access to the “properties” table in the checki... 阅读全文
posted @ 2014-08-29 17:36 大米稀饭 阅读(203) 评论(0) 推荐(0)
摘要: 必须。必须是根元素。包含一个或多个元素。 Attributes:xmlns:androidString,必须。定义XML的命名空间,必须是“http://schemas.android.com/apk/res/android”. android:state_pressed ... 阅读全文
posted @ 2014-08-29 17:35 大米稀饭 阅读(1990) 评论(0) 推荐(0)
摘要: 按钮按下,弹起 颜色变化的一个效果。1 2 1 阅读全文
posted @ 2014-08-29 17:23 大米稀饭 阅读(133) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 62 下一页