自定义控件的步骤:
1 VIEw的工作原理
2 编写VIEw类
3 为VIEw类增加属性
4 绘制屏幕
5 响应用户消息
6 自定义回调函数
java代码
复制代码 代码如下:
private class MyText extends linearLayout {
private TextVIEw text1;
/*
* private String text;
*
* public String getText() { return text; }
*
* public voID setText(String text) { this.text = text; }
*/
public MyText(Context context) {
super(context);
// Todo auto-generated constructor stub
LayoutInflater inflate = (LayoutInflater) context
.getSystemService(context.LAYOUT_INFLATER_SERVICE);
VIEw vIEw = inflate.inflate(R.layout.tabhost_item,this,true);
text1 = (TextVIEw) vIEw.findVIEwByID(R.ID.tabhost_tv);
}
public voID setTextVIEwText(String tabhost_name) {
text1.setText(tabhost_name);
}
/*
* @OverrIDe protected voID onDraw(Canvas canvas) { // Todo
* auto-generated method stub super.onDraw(canvas); Paint p = new
* Paint(); p.setcolor(color.WHITE); p.setTextSize(10);
* canvas.drawText(text,25,p); }
*/
}
xml代码
复制代码 代码如下:
<?xml version="1.0" enCoding="utf-8"?>
<!-- GMaptabactivity中自定义控件MyText的自布局 -->
<TextVIEw
androID:ID="@+ID/tabhost_tv"
androID:layout_wIDth="wrap_content"
androID:layout_height="wrap_content"
/>
以上是内存溢出为你收集整理的android自定义控件和自定义回调函数步骤示例全部内容,希望文章能够帮你解决android自定义控件和自定义回调函数步骤示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)