mixer-a
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 101, comments - 29, trackbacks - 0
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
(101)
2012年8月 (2)
2012年7月 (13)
2012年6月 (6)
2012年5月 (6)
2012年4月 (26)
2012年3月 (16)
2012年2月 (17)
2012年1月 (15)
我的连接
a
iteye
csdn
www.javady.com
www.javady.com
搜索
最新评论
1. re: android开发我的新浪微博客户端-登录页面UI篇(4.1)[未登录]
仿真时提示:No Launcher activity found!
--小龙
2. re: android开发我的新浪微博客户端-登录页面UI篇(4.1)[未登录]
“新建名LoginActivity.java的Activity并且在AndroidManifest.xml中进行相应配置”请问怎么进行配置?因为新建的LoginActivity.java无法启动仿真。
--小龙
3. re: JS 时间处理和格式转换
@Wanlic2008
不用把时间的年份拿出来单独分析
--Wanlic2008
4. re: JS 时间处理和格式转换
评论内容较长,点击标题查看
--Wanlic2008
5. re: Android进阶2之Http连接GET/POST请求
有用
--许大海
阅读排行榜
1. JS 时间处理和格式转换(41175)
2. Android进阶2之Activity之间数据交流(onActivityResult的用法)(11496)
3. [原]Android应用程序发送广播(sendBroadcast)的过程分析(7298)
4. [原]Android应用程序键盘(Keyboard)消息处理机制分析(4881)
5. 并行计算框架的Java实现--系列一(3772)
评论排行榜
1. 你想不到的压缩方法:将javascript文件压缩成PNG图像存储(4)
2. MyEclipse快捷键设置(4)
3. 开发流程那些事:6天时间修改1行代码(3)
4. JS 时间处理和格式转换(3)
5. 也谈 GET 和 POST 的区别(2)
Android学习笔记进阶19之给图片加边框
//设置颜色 public void setColour(int color){ co = color; } //设置边框宽度 public void setBorderWidth(int width){ borderwidth = width; }
具体实现:
package xiaosi.imageborder; import android.app.Activity; import android.graphics.Color; import android.os.Bundle; public class ImageBorderActivity extends Activity { /** Called when the activity is first created. */ private myImageView image = null; private myImageView image1 = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); image = (myImageView)findViewById(R.id.iamge); image.setColour(Color.YELLOW); image.setBorderWidth(10); image1 = (myImageView)findViewById(R.id.iamge1); image1.setColour(Color.GREEN); image1.setBorderWidth(5); } }
main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:background="@drawable/playerbackground" android:layout_width="fill_parent" android:layout_height="fill_parent"> <xiaosi.imageborder.myImageView android:id="@+id/iamge" android:layout_width="200px" android:layout_height="230px" android:layout_alignParentRight="true" android:src="@drawable/v" android:layout_centerInParent="true" android:layout_marginRight="3px" /> <xiaosi.imageborder.myImageView android:id="@+id/iamge1" android:layout_width="200px" android:layout_height="230px" android:layout_alignParentRight="true" android:src="@drawable/v" android:layout_centerInParent="true" android:layout_marginRight="3px" /> </LinearLayout>
package xiaosi.imageborder; import android.content.Context; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.Rect; import android.util.AttributeSet; import android.widget.ImageView; public class myImageView extends ImageView { private int co; private int borderwidth; public myImageView(Context context) { super(context); } public myImageView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public myImageView(Context context, AttributeSet attrs) { super(context, attrs); } //设置颜色 public void setColour(int color){ co = color; } //设置边框宽度 public void setBorderWidth(int width){ borderwidth = width; } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); // 画边框 Rect rec = canvas.getClipBounds(); rec.bottom--; rec.right--; Paint paint = new Paint(); //设置边框颜色 paint.setColor(co); paint.setStyle(Paint.Style.STROKE); //设置边框宽度 paint.setStrokeWidth(borderwidth); canvas.drawRect(rec, paint); } }
源代码下载:
点击打开链接
posted on 2012-02-18 08:20
mixer-a
阅读(1018)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理