/** 得到系统可用内存 **/
@SuppressLint("NewApi")
private String getMemFree(){
StatFs fs = new StatFs(Environment.getDataDirectory().getPath());
return Formatter.formatFileSize(this, (fs.getAvailableByte...
分类:
移动开发 时间:
2014-12-09 17:54:23
阅读次数:
204
activity界面负责启动服务把数据打包,service获取数据,进行操作。具体demo如下:
package com.example.android_service_trance;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.ComponentName...
分类:
其他好文 时间:
2014-11-19 15:58:36
阅读次数:
226
android 的2048小游戏完整实现:GridLayout布局(android 4.0及以上)。
package com.example.y2048;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.os.Bundle;
import android.ut...
分类:
移动开发 时间:
2014-11-19 01:43:29
阅读次数:
260
LogCat Dex?Loader]?Unable?to?execute?dex:?Multiple?dex?files?define?Landroid/annotation/SuppressLint;
CustomViewTest]?Conversion?to?Dalvik?format?failed:?Unable?to?execute?dex:?...
分类:
移动开发 时间:
2014-11-14 12:46:13
阅读次数:
817
1.XML按钮定义显示:2.后台代码创建控件并注册事件import android.annotation.SuppressLint;import android.app.Activity;import android.app.ActionBar.LayoutParams;import android...
分类:
其他好文 时间:
2014-11-09 09:53:16
阅读次数:
261
1.代码import android.annotation.SuppressLint;import android.app.Activity;import android.app.ActionBar.LayoutParams;import android.os.Bundle;import andro...
分类:
其他好文 时间:
2014-11-08 20:49:06
阅读次数:
247
package com.brady.est;import android.annotation.SuppressLint;import android.os.Bundle;import android.support.v7.app.ActionBarActivity;import android.v...
分类:
其他好文 时间:
2014-10-31 18:59:41
阅读次数:
134
TTS(Text to speech)为语音合成的意思。本课程主要介绍了TTS的使用方法。 1 package cn.eoe.tts; 2 3 import java.util.Locale; 4 import android.annotation.SuppressLint; 5 import...
分类:
其他好文 时间:
2014-10-31 17:14:23
阅读次数:
224
package com.brady.est;import android.annotation.SuppressLint;import android.graphics.Bitmap;import android.graphics.drawable.BitmapDrawable;import and...
分类:
其他好文 时间:
2014-10-31 11:27:00
阅读次数:
266
1>GridLayout,4.0版本以上新增的网格布局,以下版本需要引用支撑包package com.brady.est;import android.annotation.SuppressLint;import android.os.Bundle;import android.support.v7...
分类:
其他好文 时间:
2014-10-30 10:50:15
阅读次数:
665