Android -- 自定义控件(ImageButton)
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 完成了
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。