当前位置: 编程技术>移动开发
本页文章导读:
▪drawBit地图 drawBitmap
public void drawBitmap (Bitmap bitmap, Rect src, Rect dst, Paint paint)src 从图片上取一个范围new Rect(int left, int top, int right, int bottom);从left,top点截取到right,bottom点大小的区域dst 画到屏幕的范围new R.........
▪ 箭头的应用 箭头的使用
<Button android:layout_width="48dip" android:layout_height="48dip" android:layout_.........
▪ 处置多个notication 处理多个notication
有时候需要处理多个notification,如计时表
需要加入intent.setAction("actionstring" + System.currentTimeMillis()); 根据需要加入FLAG_UPDATE_CURRENT 在PendingIntents
或者使用 intent.setData()
......
[1]drawBit地图
来源: 互联网 发布时间: 2014-02-18
drawBitmap
public void drawBitmap (Bitmap bitmap, Rect src, Rect dst, Paint paint)
src 从图片上取一个范围
new Rect(int left, int top, int right, int bottom);
从left,top点截取到right,bottom点大小的区域
dst 画到屏幕的范围
new Rect(int left, int top, int right, int bottom);
将图片填充left,top到right,bottom的区域
public void drawBitmap (Bitmap bitmap, Rect src, Rect dst, Paint paint)
src 从图片上取一个范围
new Rect(int left, int top, int right, int bottom);
从left,top点截取到right,bottom点大小的区域
dst 画到屏幕的范围
new Rect(int left, int top, int right, int bottom);
将图片填充left,top到right,bottom的区域
[2] 箭头的应用
来源: 互联网 发布时间: 2014-02-18
箭头的使用
<Button
android:layout_width="48dip"
android:layout_height="48dip"
android:layout_toLeftOf="@id/next"
android:layout_centerVertical="true"
android:text="◀"
android:textAppearance="@android:style/TextAppearance.Large"
android:id="@+id/previous"
/>
1 楼
chenleijava
2011-06-24
楼主想说啥??
[3] 处置多个notication
来源: 互联网 发布时间: 2014-02-18
处理多个notication
有时候需要处理多个notification,如计时表
需要加入intent.setAction("actionstring" + System.currentTimeMillis());
根据需要加入FLAG_UPDATE_CURRENT 在PendingIntents
或者使用 intent.setData()
最新技术文章: