- 博客(12)
- 资源 (7)
- 收藏
- 关注
原创 调用Service中的方法
一、新建类继承Servicepublic class DemoService extends Service{ //新建内部类 public class DemoServiceBinder extends Binder{ DemoServiceBinder getService(){ return DemoService.this; } } //实例化内部类 pr
2013-04-01 09:14:26 510
原创 删除Eclipse多余Workspace
一、找到一下目录在eclipse安装路径下eclipse\configuration\.settings\org.eclipse.ui.ide.prefs 关闭被占用端口netstat -ano 查看端口状态,包括PIDntsd -c q -p PID
2013-03-31 11:15:30 368
原创 删除非空约束
1.没有定义约束名 alter table 表名 modify 列名 类型 null;2.定义约束名 alter table 表名称 drop constraint 约束名 另收集了一张整理好的图片:
2013-03-31 11:06:29 2047
原创 SQLite的增删改查一
一、通常数据库操作会创建一个DAO类public DBDao(Context context){ DBOpenHelper dbOpenHelper = new DBOpenHelper(context); //writable加锁操作数据库 //dbOpenHelper.getReadableDatabase(); //dbOpenHelper.getWritableDatabase
2013-03-30 14:11:24 484
原创 单例模式示例
//私有化构造器private DemoService(){}private static DemoService service;//提供静态方法public static synchronized DemoService getInstance(){ if(service==null){ service = new DemoService(); } return servic
2013-03-29 21:08:43 259
原创 Activity启动模式
android:launchMode="singleTop"栈顶元素是激活的组件,那么不会重复创建Activityandroid:launchMode="singleTask"任务栈只有一个这样的Activity,启动时会清空这个Activity上面的全部Activityandroid:launchMode="singleInstance"会开启新的任务栈,默认的任务栈只会存在
2013-03-29 15:18:39 391
原创 debug调试
一、真机调试如果无法断点可以加如下代码:<application android:debuggable="true">二、增加断点debug运行程序 Confirm Perspective Switch 选择Yes 查看变量值可以右击Watch,Step Over(F6)单步执行,Resume(F8)放行
2013-03-28 19:58:46 392
原创 dimen尺寸的使用
一、values文件夹下新建dimen.xml 50.0dip 50.0dip二、代码中引用的方法context.getResources().getDimensionPixelSize(R.dimen.text_width);
2013-03-27 16:21:11 305
MDF4_lib.zip
2021-08-16
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人