说起安卓开发中的dialog,用的地方还是很多的,但是系统的dialog无法 满足我们的需求,这个时候就需要封装一个高度可复用的dialog来了,下面是我封装出的一个通用dialog:
/*Copyright ©2015 TommyLemon(https://github.com/TommyLemon)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import com.ninepoint.scannerpay.R;
import com.ninepoint.scannerpay.utils.StringUtil;
/**
* 通用对话框类
*
* @author ruedy
*/
public class AlertDialog extends Dialog implements android.view.View.OnClickListener {
// private static final String TAG = "AlertDialog";
/**
* 自定义Dialog监听器
*/
public interface OnDialogButtonClickListener {
/**
* 点击按钮事件的回调方法
*
* @param requestCode 传入的用于区分某种情况下的showDialog
* @param isPositive
*/
void onDialogButtonClick(int requestCode, boolean isPositive);
}
@SuppressWarnings("unused")
private Context context;
private String title;
private String message;
private String strPositive;
private String strNegative;
private boolean showNegativeButton = true;
private int requestCode;
private OnDialogButtonClickListener listener;
private boolean cancelable = true;
/**
* 带监听器参数的构造函数,预计需要多态
*/
public AlertDialog(Context context, boolean cancleable, String title, String message, boolean showNegativeButton,
int requestCode, OnDialogButtonClickListener listener) {
super(context, R.style.MyDialog);
this.cancelable = cancleable;
this.context = context;
this.title = title;
this.message = message;
this.showNegativeButton = showNegativeButton;
this.requestCode = requestCode;
this.listener = listener;
}
public AlertDialog(Context context, String title, String message, boolean showNegativeButton,
String strPositive, int requestCode, OnDialogButtonClickListener listener) {
super(context, R.style.MyDialog);
this.context = context;
this.title = title;
this.message = message;
this.showNegativeButton = showNegativeButton;
this.strPositive = strPositive;
this.requestCode = requestCode;
this.listener = listener;
}
public AlertDialog(Context context, String title, String message,
String strPositive, String strNegative, int requestCode, OnDialogButtonClickListener listener) {
super(context, R.style.MyDialog);
this.context = context;
this.title = title;
this.message = message;
this.strPositive = strPositive;
this.strNegative = strNegative;
this.requestCode = requestCode;
this.listener = listener;
}
private TextView tvTitle;
private TextView tvMessage;
private Button btnPositive;
private Button btnNegative;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.alert_dialog);
setCanceledOnTouchOutside(cancelable);
setCancelable(cancelable);
tvTitle = (TextView) findViewById(R.id.tvAlertDialogTitle);
tvMessage = (TextView) findViewById(R.id.tvAlertDialogMessage);
btnPositive = (Button) findViewById(R.id.btnAlertDialogPositive);
btnNegative = (Button) findViewById(R.id.btnAlertDialogNegative);
tvTitle.setVisibility(StringUtil.isNotEmpty(title, true) ? View.VISIBLE : View.GONE);
tvTitle.setText("" + StringUtil.getCurrentString());
if (StringUtil.isNotEmpty(strPositive, true)) {
btnPositive.setText(StringUtil.getCurrentString());
}
btnPositive.setOnClickListener(this);
if (showNegativeButton) {
if (StringUtil.isNotEmpty(strNegative, true)) {
btnNegative.setText(StringUtil.getCurrentString());
}
btnNegative.setOnClickListener(this);
} else {
btnNegative.setVisibility(View.GONE);
}
tvMessage.setText(StringUtil.getTrimedString(message));
}
@Override
public void onClick(final View v) {
if (v.getId() == R.id.btnAlertDialogPositive) {
listener.onDialogButtonClick(requestCode, true);
} else if (v.getId() == R.id.btnAlertDialogNegative) {
listener.onDialogButtonClick(requestCode, false);
}
dismiss();
}
}
其中alert_dialog是个布局,效果图:
下载地址:
http://download.csdn.net/download/iamdingruihaha/9995534