LauncherShortcuts.java
SEE:
1.
<activity android:name=".app.LauncherShortcuts"
android:label="@string/shortcuts">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.SAMPLE_CODE" />
</intent-filter>
</activity>
<activity-alias android:name=".app.CreateShortcuts"
android:targetActivity=".app.LauncherShortcuts"
android:label="@string/sample_shortcuts">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity-alias>
SO:
activity-alias,重新换个名字再次使用该activity,懒,我喜欢。。没有CreateShortcuts这个文件的
SEE:
1.
final Intent intent = getIntent();
final String action = intent.getAction();
// If the intent is a request to create a shortcut, we'll do that and exit
if (Intent.ACTION_CREATE_SHORTCUT.equals(action)) {
setupShortcut();
finish();
return;
}
SO:
创建shortcut走到这里就完了。。可以获得激活该activity的intent
SEE:
Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
shortcutIntent.setClassName(this, this.getClass().getName());
shortcutIntent.putExtra(EXTRA_KEY, "ApiDemos Provided This Shortcut");
// Then, set up the container intent (the response to the caller)
Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.shortcut_name));
Parcelable iconResource = Intent.ShortcutIconResource.fromContext(
this, R.drawable.app_sample_code);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
// Now, return the result to the launcher
setResult(RESULT_OK, intent);
SO:
设置快捷方式时 显示的快捷方式的图标和名字和intent
PS:这里的shortcut 和 widget不一样,我之前弄混了,快捷方式相关的到这里就创建结束了。。。。。 害我纠结的。。。
MenuInflateFromXml.java
SEE:
// Create the spinner to allow the user to choose a menu XML
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, sMenuExampleNames);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
mSpinner = new Spinner(this);
// When programmatically creating views, make sure to set an ID
// so it will automatically save its instance state
mSpinner.setId(R.id.spinner);
mSpinner.setAdapter(adapter);
SO:
创建spinner的步骤 复习下
SEE:
// Create help text
mInstructionsText = new TextView(this);
mInstructionsText.setText(getResources().getString(
R.string.menu_from_xml_instructions_press_menu));
// Add the help, make it look decent
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
lp.setMargins(10, 10, 10, 10);
layout.addView(mInstructionsText, lp);
// Set the layout as our content view
setContentView(layout);
SO:
动态添加view
SEE:
public boolean onCreateOptionsMenu(Menu menu) {
// Hold on to this
mMenu = menu;
// Inflate the currently selected menu XML resource.
MenuInflater inflater = getMenuInflater();
inflater.inflate(sMenuExampleResources[mSpinner.getSelectedItemPosition()], menu);
SO:
动态生成一个布局.<menu><item><group> 多种神奇的写法 见R.main.xxxxxx.xml 懒的要死。。 知道都有什么功能就好了。。 为什么要返回重新设置菜单样式,估计onCreateOptionsMenu只调用一次 一次 次。
IncomingMessage
SEE:
1.
private View inflateView(int resource) {
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
return vi.inflate(resource, null);
}
SO:
不能getMenuInflater,就取个SystemService的。。。
SEE:
1.
NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
2.
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, IncomingMessageView.class), 0);
3.
Notification notif = new Notification(R.drawable.stat_sample, tickerText,
System.currentTimeMillis());
4:
notif.setLatestEventInfo(this, from, message, contentIntent);
5:
nm.notify(R.string.imcoming_message_ticker_text, notif);
6:IncomingMessageView.JAVA
nm.cancel(R.string.imcoming_message_ticker_text);
SO:
1、获得notificationmananger
2、等待中的意图设置,点击通知的时候跳转到的ACTIVITY
3、通知栏上显示的图片,文字和时间。如果用2.3的黑色通知栏是看不见的,看不见的,。。。请用2.2模拟器
4、显示在下拉的通知栏里的内容,指定标题,内容,意图。
5、开始通知,指定 ID,Notification。
6、取消通知,指定 ID某字符串的值用来当ID,懒得很,但是这个确实是唯一的。好方法。
NotifyingController.java
SEE:
1.
startService(new Intent(NotifyingController.this,
NotifyingService.class));
2.
stopService(new Intent(NotifyingController.this,
NotifyingService.class));
SO:
开始服务,关闭服务
SEE:
1.
private final IBinder mBinder = new Binder() {
@Override
protected boolean onTransact(int code, Parcel data, Parcel reply,
int flags) throws RemoteException {
return super.onTransact(code, data, reply, flags);
}
};
2.
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
SO:
service要覆盖的方法。
SEE:
1.
mCondition = new ConditionVariable(false);
2.
showNotification(R.drawable.stat_happy,
R.string.status_bar_notifications_happy_message);
if (mCondition.block(5 * 1000))
break;
showNotification(R.drawable.stat_neutral,
R.string.status_bar_notifications_ok_message);
if (mCondition.block(5 * 1000))
break;
showNotification(R.drawable.stat_sad,
R.string.status_bar_notifications_sad_message);
if (mCondition.block(5 * 1000))
break;
3.
mCondition.open();
SO:
1.创建ConditionVariable并设置为false不阻塞,2.mCondition.block(5 * 1000)阻塞5秒,如果阻塞不成功跳出循环。。。3.打开所阻塞的进程。。
void block()
阻塞当前线程,直到条件为open
void block(long timeout)
阻塞当前线程,直到条件为open或超时
void open()
释放所有阻塞的线程
void close()
将条件重置为close
NotifyWithText.java
SEE:
1.
Toast.makeText(NotifyWithText.this, R.string.short_notification_text,
Toast.LENGTH_SHORT).show();
2.
Toast.makeText(NotifyWithText.this, R.string.long_notification_text,
Toast.LENGTH_LONG).show();
SO:
显示时间的长短。。LENGTH_SHORT =0, Toast.LENGTH_LONG=1,感觉上显示的时间short为一秒,LONG为两秒
StatusBarNotifications
SEE:
1.makeMoodIntent()
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, NotificationDisplay.class)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
.putExtra("moodimg", moodId),
PendingIntent.FLAG_UPDATE_CURRENT);
SO:
比较简写的创建方法。。。
1.
Intent.FLAG_ACTIVITY_NEW_TASK If set, this activity will become the start of a new task on this history stack.
开启的ACTIVITY将在一个新的TASK中运行。
2.
PendingIntent.FLAG_CANCEL_CURRENT == if the described PendingIntent already exists, the current one is canceled before generating a new one.
如果描述的 等待意图 已经存在,取消现在这个,创建一个新的
FLAG_NO_CREATE == if the described PendingIntent does not already exist, then simply return null instead of creating it.
如果描述的意图不存在,返回null
FLAG_ONE_SHOT == this PendingIntent can only be used once.
这个 等待意图 只能使用一次
FLAG_UPDATE_CURRENT == if the described PendingIntent already exists, then keep it but its replace its extra data with what is in this new Intent.
这个描述的 等待意图已经存在了,就替换其额外的数据在这个新的意图中
SEE:
1.
Notification notif = new Notification();
notif.contentIntent = makeMoodIntent(moodId);
CharSequence text = getText(textId);
notif.tickerText = text;
notif.icon = moodId;
SO:
新的设置方法。都是PUBLIC的。。。这。。。
SEE:
1.
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.status_bar_balloon);
contentView.setTextViewText(R.id.text, text);
contentView.setImageViewResource(R.id.icon, moodId);
notif.contentView = contentView;
SO:
Remote 远程遥控, 设计模式应该是代理者模式 当没有contentView的时候使用默认的view,具体的RemoteViews的设置方法,设置名字,布局。设置具体的view。
分享到:
相关推荐
《Android 2.2 ApiDemos深度解析》 在Android开发领域,ApiDemos是一个非常重要的参考资料,它是由Google官方提供的一个示例程序,包含了Android SDK中的各种API功能的演示。这个项目,针对的是Android 2.2(API...
**Android 6.0 API Demos详解** Android 6.0 API Demos 是一个官方提供的示例代码集合,它展示了Android 6.0 (Marshmallow) SDK中的各种API功能和用法。这些示例旨在帮助开发者更好地理解和学习如何在实际应用中...
API Demos 是 Google 为了 Android 开发者所提供的一个 Android API 合集,其中包含了很多的 API 范例,同时遵循了良好的代码规范,是一个值得开发者研究和学习的典型。android的ApiDemos,需要解压缩后使用。
《深入探索Android API Demos:最新实践与技术解析》 Android API Demos是Google官方提供的一款用于展示Android SDK中各种API功能和用法的应用程序,它涵盖了从基础控件到高级特性的全方位示例,是开发者学习...
《Android 1.6 API Demos深度解析》 在Android开发的世界中,API Demos是一个不可或缺的学习资源,它为开发者提供了丰富的示例代码,帮助理解并掌握Android API的各种功能。本篇文章将深入探讨"android1.6 apiDemos...
从官方预览包里提取的Android6.0 ApiDemos.apk,方便安装在真机上查看实例的实际效果。
《Android ApiDemos apk:深入理解Android应用开发的实践指南》 Android ApiDemos apk是Android开发者们熟悉的一个示例程序,它包含了Android SDK中的各种API功能演示,为开发者提供了丰富的学习资源。这个应用程序...
《Android 4.3 ApiDemos深度解析》 在Android操作系统的发展历程中,每个版本的更新都会带来新的特性和API,以提升用户体验和开发者的工作效率。Android 4.3(API级别18)是Android系统的一个重要里程碑,它引入了...
《深入解析Android 4.1 ApiDemos》 在Android开发领域,ApiDemos是一个非常重要的参考资料,它是由Google官方提供的示例代码集合,用于演示Android SDK中的各种API功能。对于开发者来说,尤其是对Android 4.1...
最新版ApiDemos Android SDK 中带有很多例子,其中ApiDemo 详细介绍了Android 平台主要API,分成了 · App · Content · Graphics · Media · OS · Text · Views 几个大类,每个大类又分为几个小类,...
Android 5.1的ApiDemos安装包
《Android 3.0 ApiDemos详解》 在Android开发领域,`ApiDemos`是一个非常重要的学习资源,它是Google官方提供的一款示例程序,包含了Android SDK中的各种API功能演示。这个项目主要用于帮助开发者理解并熟悉Android...
《Android ApiDemos详解——深度探索Android开发应用实例》 Android ApiDemos是Android开发者学习和理解Android API的重要资源,它包含了丰富的示例代码,涵盖了Android SDK中的各种API功能。这个程序是专为Android...
**Android ApiDemos详解** `Android ApiDemos` 是Android系统提供的一款官方示例程序,它集合了Android SDK中的各种API用法,是开发者学习和理解Android开发的关键资源。这个项目旨在通过实例代码来演示Android API...
Android官网ApiDemos源码 供大家学习参考之用
《Android API Demos详解》 Android API Demos是一款由谷歌官方提供的开源项目,它包含了大量Android SDK中的API示例代码,旨在帮助开发者更好地理解和学习如何在实际应用中使用Android的各种功能和API。该项目覆盖...
**Android ApiDemos详解** ApiDemos是Android官方提供的一款示例应用,它包含了Android SDK中的各种API功能演示,帮助开发者了解和学习Android系统提供的各种API接口和功能。这个"Android ApiDemos不报错版本"是...
《Android ApiDemos不报错版本:探索与学习》 Android ApiDemos是Android平台上的一个官方示例项目,它为开发者提供了丰富的API演示,涵盖了Android系统中的各种控件和功能,是学习和理解Android开发的宝贵资源。这...
《Android API 19 ApiDemos详解》 在Android开发领域,API Demos是一个非常重要的学习资源,它包含了Android SDK中的各种API示例代码,帮助开发者深入理解和掌握Android平台的功能特性。本文将针对API Level 19...