本文整理汇总了Java中android.app.AlertDialog.setView方法的典型用法代码示例。如果您正苦于以下问题:Java AlertDialog.setView方法的具体用法?Java AlertDialog.setView怎么用?Java AlertDialog.setView使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.app.AlertDialog
的用法示例。
在下文中一共展示了AlertDialog.setView方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: saveAsDialog
import android.app.AlertDialog; //导入方法依赖的package包/类
private void saveAsDialog(int title, int message, String path,
DialogInterface.OnClickListener listener)
{
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(title);
builder.setMessage(message);
// Add the buttons
builder.setPositiveButton(R.string.save, listener);
builder.setNegativeButton(R.string.cancel, listener);
// Create edit text
Context context = builder.getContext();
EditText text = new EditText(context);
text.setId(TEXT);
text.setText(path);
// Create the AlertDialog
AlertDialog dialog = builder.create();
dialog.setView(text, 30, 0, 30, 0);
dialog.show();
}
示例2: showAlert
import android.app.AlertDialog; //导入方法依赖的package包/类
/**
* Show dialog
* @param context Context
* @param title Title
* @param layoutResource Layout resource id
* @param iconResource Icon resource id
* @return AlertDialog Dialog
*/
static AlertDialog showAlert(Context context, CharSequence title, int layoutResource, int iconResource) {
@SuppressLint("InflateParams")
View view = ((Activity) context).getLayoutInflater().inflate(layoutResource, null, false);
AlertDialog alertDialog = new AlertDialog.Builder(context).create();
alertDialog.setTitle(title);
alertDialog.setView(view);
if (iconResource > 0) {
alertDialog.setIcon(iconResource);
}
alertDialog.show();
return alertDialog;
}