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学习笔记技巧之给文本加边框
BorderTextViews.java
package xiaosi.BorderTextView; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.util.AttributeSet; import android.widget.TextView; public class BorderTextViews extends TextView { private Paint paint = null; private int color = Color.GRAY; public BorderTextViews(Context context, AttributeSet attrs) { super(context, attrs); } //设置边框颜色 public void setPaintColor(int color){ this.color = color; } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); paint = new Paint(); //给边框设置颜色 paint.setColor(color); //上 canvas.drawLine(0, 0, this.getWidth()-1, 0, paint); //左 canvas.drawLine(0, 0, 0, this.getHeight()-1, paint); //下 canvas.drawLine(0, this.getHeight()-1, this.getWidth()-1, this.getHeight()-1, paint); //右 canvas.drawLine(this.getWidth()-1, 0, this.getWidth()-1, this.getHeight()-1, paint); } }
package xiaosi.BorderTextView; import android.app.Activity; import android.graphics.Color; import android.os.Bundle; public class BorderTextViewActivity extends Activity { /** Called when the activity is first created. */ private BorderTextViews borderTextView = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); borderTextView = (BorderTextViews)findViewById(R.id.Border); borderTextView.setPaintColor(Color.GRAY); } }
main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#CCFF66"> <xiaosi.BorderTextView.BorderTextViews android:id="@+id/Border" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#C71585" android:layout_marginTop="20dp" android:padding="10dp" android:layout_gravity="center" android:text="在画布上画边框" /> </LinearLayout>
posted on 2012-02-23 17:05
mixer-a
阅读(429)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理