码迷,mamicode.com
首页 > 移动开发 > 详细

Android -- 自定义控件(ImageButton)

时间:2015-03-06 15:45:11      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

1. 效果图

  技术分享

 

2.  实现代码

  

package com.example.timetest;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class ImageButton extends LinearLayout {

	private ImageView mImageView;

	private TextView mTextView;

	public ImageButton (
	               Context context , AttributeSet attrs ) {

		super ( context , attrs );

		mImageView = new ImageView ( context );
		mImageView.setImageResource ( R.drawable.add_tip );
		mImageView.setPadding ( 0 , 0 , 5 , 0 );
		mTextView = new TextView ( context );
		mTextView.setText ( "添加提醒" );
		setOrientation ( LinearLayout.HORIZONTAL );
		addView ( mImageView );
		addView ( mTextView );

	}

}

 3.  使用的图片

  技术分享

 

4.  使用自定义控件

 

 <com.example.timetest.ImageButton
        android:id="@+id/add"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:gravity="center" />   

 

      Ok  完成了

  

Android -- 自定义控件(ImageButton)

标签:

原文地址:http://www.cnblogs.com/SM-t/p/4318317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!