已在模擬器測試運行,沒發現bug。
通過本代碼的演示,可以將UI相關(或其它方面)的常用操作封裝成工具類,使代碼復用程度更高,模塊化更好,代碼結構也更加清晰。
工具類UIHelper代碼如下:
- package com.show.act;
-
- import Android.app.AlertDialog;
- import android.app.AlertDialog.Builder;
- import android.content.Context;
- import android.content.DialogInterface;
- import android.content.DialogInterface.OnClickListener;
- import android.view.ViewGroup.LayoutParams;
- import android.widget.LinearLayout;
- import android.widget.TextView;
-
- public class UiHelper {
-
- /**
- * 提問框的 Listener
- *
- * @author Lei
- */
- // 因為本類不是activity所以通過繼承接口的方法獲取到點擊的事件
- public interface OnClickYesListener {
- abstract void onClickYes();
- }
-
- /**
- * 提問框的 Listener
- *
- */
- public interface OnClickNoListener {
- abstract void onClickNo();
- }
-
- public static void showQuestionDialog(Context context, String title,
- String text, final OnClickYesListener listenerYes,
- final OnClickNoListener listenerNo) {
-
- Builder builder = new AlertDialog.Builder(context);
-
- if (!isBlank(text)) {
- // 此方法為dialog寫布局
- final TextView textView = new TextView(context);
- textView.setText(text);
- LinearLayout layout = new LinearLayout(context);
- layout.setPadding(10, 0, 10, 0);
- layout.addView(textView, new LayoutParams(LayoutParams.FILL_PARENT,
- LayoutParams.WRAP_CONTENT));
- builder.setView(layout);
- }
- // 設置title
- builder.setTitle(title);
- // 設置確定按鈕,固定用法聲明一個按鈕用這個setPositiveButton
- builder.setPositiveButton(context.getString(R.string.yes),
- new OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- // 如果確定被電擊
- if (listenerYes != null) {
- listenerYes.onClickYes();
- }
- }
- });
- // 設置取消按鈕,固定用法聲明第二個按鈕要用setNegativeButton
- builder.setNegativeButton(context.getString(R.string.no),
- new OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- // 如果取消被點擊
- if (listenerNo != null) {
- listenerNo.onClickNo();
- }
- }
- });
-
- // 控制這個dialog可不可以按返回鍵,true為可以,false為不可以
- builder.setCancelable(false);
- // 顯示dialog
- builder.create().show();
-
- }
-
- /**
- * 處理字符的方法
- *
- * @param str
- * @return
- */
- public static boolean isBlank(String str) {
- int strLen;
- if (str == null || (strLen = str.length()) == 0) {
- return true;
- }
- for (int i = 0; i < strLen; i++) {
- if ((Character.isWhitespace(str.charAt(i)) == false)) {
- return false;
- }
- }
- return true;
- }
- }
使用示例如下:
- package com.show.act;
-
- import com.show.act.UiHelper.OnClickNoListener;
- import com.show.act.UiHelper.OnClickYesListener;
-
- import android.app.Activity;
- import android.os.Bundle;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
-
- public class ShowDialogActivity extends Activity {
- //聲明Button
- private Button showDialogButton;
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- init();
- }
-
- private void init(){
- showDialogButton = (Button)findViewById(R.id.showDialog01);
- showDialogButton.setOnClickListener(new OnClickListener() {
-
- public void onClick(View arg0) {
-
- //調用工具類中的dialog
- //需要傳三個值到showQuestionDialog("當前界面","標題","提示內容",new 確定,new 取消 );
- UiHelper.showQuestionDialog(ShowDialogActivity.this, "提示", "是否確定", new OnClickYesListener() {
- public void onClickYes() {
- //點擊確定干什麼
-
- }
- }, new OnClickNoListener() {
-
- public void onClickNo() {
- //點擊取消干什麼
- }
- });
-
- }
- });
- }
- }