摘要:
在讲参数传递之前,先讲下intent的定义: Intent intent = new Intent(MainActivity.this,SecondActivity.class); //这是显式定义 如果是隐式定义,隐式Intent通过在AndroidManifest.xml中<activity>标 阅读全文
摘要:
原文: http://blog.csdn.net/tanghongchang123/article/details/52982818 一、基本命令: 1、adb connect [ip] 2、 adb disconnect [ip] 3、adb uninstall [package] 4、.adb 阅读全文
摘要:
进度条对话框在开发是常见的一种工具,只要注意以下几点,就可以轻松使用。 ProgressDialog.setMax(MAX_PROGRESS); //设置最大值,可以如下定义一个常值 //private static final int MAX_PROGRESS=100; ProgressDialo 阅读全文
摘要:
如果需要用到自定义多个布局,就需要用到layoutInflater,获取layoutInflater一般有几种方式,但我在实际使用中,感觉如下的getLayoutInflater()是最为方便的,不用带参数,错误率低。在获取LayoutInflater,再通过layoutInflater.infla 阅读全文
摘要:
DatePickerDialog类的实例化需要用到回调接口,如下定义: android.app.DatePickerDialog.DatePickerDialog(Context context, OnDateSetListener callBack, int year, int monthOfYe 阅读全文