Android 自訂控制項

來源:互聯網
上載者:User

編輯器載入中... Android自訂控制項 2011-08-24 8:08 @ noTice501 今天和大家分享下群組控制項的使用。很多時候android自訂控制項並不能滿足需求,如何做呢?很多方法,可以自己繪製一個,可以通過繼承基礎控制項來重寫某些環節,當然也可以將控制群組合成一個新控制項,這也是最方便的一個方法。今天就來介紹下如何使用群組控制項,將通過兩個執行個體來介紹。 第一個實現一個帶圖片和文字的按鈕,: 整個過程可以分四步走。第一步,定義一個layout,實現按鈕內部的布局。代碼如下:

這個xml實現一個左圖右字的布局,接下來寫一個類繼承LinearLayout,匯入剛剛的布局,並且設定需要的方法,從而使的能在代碼中控制這個自訂控制項內容的顯示。代碼如下: package com.notice.ib; import android.content.Context; import android.util.AttributeSet; import android.view.LayoutInflater; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; public class ImageBt extends LinearLayout { private ImageView iv; private TextView tv; public ImageBt(Context context) { this(context, null); } public ImageBt(Context context, AttributeSet attrs) { super(context, attrs); // 匯入布局 LayoutInflater.from(context).inflate(R.layout.custombt, this, true); iv = (ImageView) findViewById(R.id.iv); tv = (TextView) findViewById(R.id.tv); } /** * 設定圖片資源 */ public void setImageResource(int resId) { iv.setImageResource(resId); } /** * 設定顯示的文字 */ public void setTextViewText(String text) { tv.setText(text); } } 第三步,在需要使用這個自訂控制項的layout中加入這控制項,只需要在xml中加入即可。方法如下: <com.notice.ib.ImageBt android:id="@+id/bt_confirm" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_alignParentBottom="true" android:background="@drawable/btbg" android:clickable="true" android:focusable="true" /> <com.notice.ib.ImageBt android:id="@+id/bt_cancel" android:layout_toRightOf="@id/bt_confirm" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_alignParentBottom="true" android:background="@drawable/btbg" android:clickable="true" android:focusable="true" /> 注意的是,控制項標籤使用完整的類名即可。為了給按鈕一個點擊效果,你需要給他一個selector背景,這裡就不說了。 最後一步,即在activity中設定該控制項的內容。當然,在xml中也可以設定,但是只能設定一個,當我們需要兩次使用這樣的控制項,並且顯示內容不同時就不行了。在activity中設定也非常簡單,我們在ImageBt這個類中已經寫好了相應的方法,簡單調用即可。代碼如下: public class MainActivity extends Activity { private ImageBt ib1; private ImageBt ib2; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.login); ib1 = (ImageBt) findViewById(R.id.bt_confirm); ib2 = (ImageBt) findViewById(R.id.bt_cancel); ib1.setTextViewText("確定"); ib1.setImageResource(R.drawable.confirm); ib2.setTextViewText("取消"); ib2.setImageResource(R.drawable.cancel); ib1.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { //在這裡可以實現點擊事件 } }); } } 這樣,一個帶文字和圖片的組合按鈕控制項就完成了。這樣梳理一下,使用還是非常簡單的。群組控制項能做的事還非常多,主要是在類似上例中的ImageBt類中寫好要使用的方法即可。 再來看一個群組控制項,帶刪除按鈕的EidtText。即在使用者輸入後,會出現刪除按鈕,點擊即可取消使用者輸入。 定義方法和上例一樣。首先寫一個自訂控制項的布局:

實現輸入框右側帶按鈕效果,注意將按鈕隱藏。然後寫一個EditCancel類,實現刪除使用者輸入功能。這裡用到了TextWatch這個介面,監聽輸入框中的文字變化。使用也很簡單,實現他的三個方法即可。看代碼: package com.notice.ce; import android.content.Context; import android.text.Editable; import android.text.TextWatcher; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; import android.widget.EditText; import android.widget.ImageButton; import android.widget.LinearLayout; public class EditCancel extends LinearLayout implements EdtInterface { ImageButton ib; EditText et; public EditCancel(Context context) { super(context); } public EditCancel(Context context, AttributeSet attrs) { super(context, attrs); LayoutInflater.from(context).inflate(R.layout.custom_editview, this, true); init(); } private void init() { ib = (ImageButton) findViewById(R.id.ib); et = (EditText) findViewById(R.id.et); et.addTextChangedListener(tw);// 為輸入框綁定一個監聽文字變化的監聽器 // 添加按鈕點擊事件 ib.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { hideBtn();// 隱藏按鈕 et.setText("");// 設定輸入框內容為空白 } }); } // 當輸入框狀態改變時,會調用相應的方法 TextWatcher tw = new TextWatcher() { @Override public void onTextChanged(CharSequence s, int start, int before, int count) { // TODO Auto-generated method stub } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { // TODO Auto-generated method stub } // 在文字改變後調用 @Override public void afterTextChanged(Editable s) { if (s.length() == 0) { hideBtn();// 隱藏按鈕 } else { showBtn();// 顯示按鈕 } } }; @Override public void hideBtn() { // 設定按鈕不可見 if (ib.isShown()) ib.setVisibility(View.GONE); } @Override public void showBtn() { // 設定按鈕可見 if (!ib.isShown()) ib.setVisibility(View.VISIBLE); } } interface EdtInterface { public void hideBtn(); public void showBtn(); } 在TextWatch介面的afterTextChanged方法中對文字進行判斷,若長度為0,就隱藏按鈕,否則,顯示按鈕。 另外,實現ImageButton(即那個叉)的點擊事件,刪除輸入框中的內容,並隱藏按鈕。 後面兩步的實現就是加入到實際布局中,就不再寫出來了,和上例的步驟一樣的。最後顯示效果 學會靈活的使用群組控制項,對UI開發會有很大協助。有什麼問題可以留言交流~ 分類:GUI設計, 技術文檔 標籤: 本文基於署名 2.5 中國大陸許可協議發布,歡迎轉載,演繹或用於商業目的,但是必須保留本文的署名。 作者:noTice501 連結:http://www.cnblogs.com/noTice520/archive/2011/08/07/2130359.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.