随笔分类 -  Api Demos

摘要:App->Activity->Custom Dialog 例子使用Activity 来实现自定义对话框。 类CustomDialogActivity本身无任何特别之处。关键的一点是其在AndroidManifest.xml中的定义:<activity android:name=”.app.CustomDialogActivity”android:label=”@string/activity_custom_dialog”android:theme=”@style/Theme.CustomDialog“><intent-filter>< action a 阅读全文
posted @ 2012-11-11 23:26 Atlas's blog 阅读(371) 评论(0) 推荐(0)
摘要:/** * 将AndroidManifest.xml文件中所有Intent action是ACTION_MAIN * 及category是CATEGORY_SAMPLE_CODE的activity全部取得。放入list中。 * zbtu 2012-11-5 11:25:12 */ Intent mainIntent = new Intent(Intent.ACTION_MAIN, null); mainIntent.addCategory(Intent.CATEGORY_SAMPLE_CO... 阅读全文
posted @ 2012-11-05 13:13 Atlas's blog 阅读(2013) 评论(0) 推荐(0)