很多時候Android常用的控件不能滿足我們的需求,那麼我們就需要自定義一個控件了。今天做了一個自定義控件的實例,來分享下。
首先定義一個layout實現按鈕內部布局:
- <?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="horizontal" >
-
- <ImageView
- android:id="@+id/imageView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:paddingBottom="5dip"
- android:paddingLeft="40dip"
- android:paddingTop="5dip"
- android:src="@drawable/right_icon" />
-
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="8dip"
- android:text="確定"
- android:textColor="#000000" />
-
- </LinearLayout>
接下來寫一個類繼承LinearLayout,導入剛剛的布局,並且設置需要的方法,從而使的能在代碼中控制這個自定義控件內容的顯示。
- public class ImageBtn extends LinearLayout {
-
- private ImageView imageView;
- private TextView textView;
-
- public ImageBtn(Context context) {
- super(context);
- // TODO Auto-generated constructor stub
- }
- public ImageBtn(Context context, AttributeSet attrs) {
- super(context, attrs);
- // TODO Auto-generated constructor stub
- LayoutInflater inflater=(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
- inflater.inflate(R.layout.imagebtn, this);
- imageView=(ImageView) findViewById(R.id.imageView1);
- textView=(TextView)findViewById(R.id.textView1);
- }
-
- /**
- * 設置圖片資源
- */
- public void setImageResource(int resId) {
- imageView.setImageResource(resId);
- }
-
- /**
- * 設置顯示的文字
- */
- public void setTextViewText(String text) {
- textView.setText(text);
- }
-
- }