
Android
xiaoyukid
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
RelativeLayout 相对布局
android:layout_above 将该控件的底部至于给定ID的控件之上 android:layout_below 将该控件的顶部至于给定ID的控件之下 android:layout_toLeftOf 将该控件的右边缘和给定ID的控件的左边缘对齐 android:layout_toRightOf 将该控件的左边缘和给定ID的控件的右边缘对齐 android:layout_al原创 2012-01-21 08:52:55 · 385 阅读 · 0 评论 -
Notification的使用
Notification 即状态通知栏的使用。 第一步 获取 NotificationManager。 NotificationManager barManger = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 第二步 创建一个Notification对象。 Notification barMsg = new原创 2012-03-27 22:38:08 · 592 阅读 · 0 评论