1.一种createAction的方法:Intent intent = new Intent(String intentStrcing);
用处:根据接受到的广播,消息,widget点击事件等进行app落地页载入
2.widget的控件点击事件可以绑定一个PeddingIntent对象.一般成熟应用都有自己的widget,点击后的落地页肯定是app某个native或者web页面。
3.计算类似imageView的动画效果时,这样才是得到控件的宽和高:
vWidth = getWidth() - getPaddingLeft() - getPaddingRight();
vHeight = getHeight() - getPaddingTop() - getPaddingBottom();
4.处理onTouch事件等Action的ActionKind时,需要判断的是:event.getAction() & MotionEvent.ACTION_MASK这个值的int值。
getX获得相对于父布局顶端距离,getRawX获得相对于屏幕顶端的绝对距离。
5.总结两个相似问题。
(1).StringBuffer sb =new StringBuffer(char c);
会把char默认转化成整型,调用的方法是 java.lang.StringBuffer.StringBuffer(int capacity)
(2)直接对android中textView赋值。比如 titleTv.setText(1);
会调用setText(int resId),会到R文件中寻找对应的资源,而不是“1”。可以改成setText(1+"");
6.客户端的消息(特指通知栏的消息)有以下两种实现方式:
(1)根据闹钟机制,固定时段发送广播,在receiver里接收到广播后,去请求服务器拉取消息。
(2)服务器推送消息,和客户端协定Action。实现方案是:注册一个监听action = android.intent.action.BOOT_COMPLETED的receiver,
当手机开机启动之后就会接收到这个广播。然后后台去启用一个service,这个service会持续存活,可以自行设置间隔,比如每5分钟去指定服务器访问其消息池。
两种方案在拿到json数据之后,都是通过Notification进行封装,代码如下:
/**MessageSummary是消息封装类,包含主题,内容等
**/
public static void addMessageNotify(Context context, MessageSummary summary,boolean needVoice) {
Notification notification = new Notification(R.drawable.android_jd_notification, summary.getTitle(), System.currentTimeMillis());
notification.number = count;
notification.flags = Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_LIGHTS; // 亮灯
notification.ledARGB = 0x99f0ff00;
notification.ledOnMS = 300;
notification.ledOffMS = 2000;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
AudioManager mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
int mode = mAudioManager.getRingerMode();
if (needVoice && mode != AudioManager.RINGER_MODE_SILENT && mode != AudioManager.RINGER_MODE_VIBRATE) {
notification.defaults |= Notification.DEFAULT_SOUND; // 声音
}
Intent intent = null;
intent = createIntent(MODULE_ID_MESSAGE, null);
//按照1中的方法
PendingIntent contentIntent = PendingIntent.getBroadcast(context, R.string.app_name, intent, PendingIntent.FLAG_UPDATE_CURRENT);
notification.setLatestEventInfo(context, summary.getTitle() + " (共" + count + "条)", summary.getContent(), contentIntent);
getNotificationManager(context).notify(PUSH_MESSAGE_NOTIFY_ID, notification);
}