android自定义对话框
In this tutorial, we’ll be discussing and implementing Custom Alert Dialogs in our Android Application.
We’d discussed Android Alert Dialogs already here.
在本教程中,我们将在Android应用程序中讨论和实现“自定义警报对话框”。
我们已经在这里讨论了Android Alert对话框。
Alert Dialogs by default are used to create dialogs with text messages and button actions.
Following are the setter methods that we’d already discussed in the previous tutorial.
默认情况下,“警报对话框”用于创建带有文本消息和按钮操作的对话框。
以下是我们在上一教程中已经讨论过的setter方法。
In the following section we’ll create different types of custom alert dialog:
在以下部分中,我们将创建不同类型的自定义警报对话框:
The code for the activity_main.xml layout file is given below:
下面给出了activity_main.xml布局文件的代码:
Each of the Buttons would create an AlertDialog. We’ve set the onClick method for each of them which would be defined in the MainActivity.java class.
每个按钮将创建一个AlertDialog。 我们为每个方法都设置了onClick方法,该方法将在MainActivity.java类中定义。
Add the following method(s) to your MainActivity.java:
将以下方法添加到您的MainActivity.java中:
public void simpleAlert(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Simple Alert");
builder.setMessage("We have a message");
builder.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(),
"OK was clicked",
Toast.LENGTH_SHORT).show();
}
});
builder.setNegativeButton(android.R.string.no, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(),
android.R.string.no, Toast.LENGTH_SHORT).show();
}
});
builder.setCancelable(false);
builder.show();
}
This is the simplest form of AlertDialog. Let’s get onto the more interesting ones.
这是AlertDialog的最简单形式。 让我们来看一些更有趣的。
AlertDialog.Builder
is used to build the AlertDialog.
AlertDialog.Builder
用于构建AlertDialog。
To display the AlertDialog we can alternatively use the following code as well:
要显示AlertDialog,我们也可以使用以下代码:
AlertDialog alertDialog = builder.create();
alertDialog.show();
public void withItems(View view) {
final String[] items = {"Apple", "Banana", "Orange", "Grapes"};
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("List of Items")
.setItems(items, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Toast.makeText(getApplicationContext(), items[which] + " is clicked", Toast.LENGTH_SHORT).show();
}
});
builder.setPositiveButton("OK", null);
builder.setNegativeButton("CANCEL", null);
builder.setNeutralButton("NEUTRAL", null);
builder.setPositiveButtonIcon(getResources().getDrawable(android.R.drawable.ic_menu_call, getTheme()));
builder.setIcon(getResources().getDrawable(R.drawable.jd, getTheme()));
AlertDialog alertDialog = builder.create();
alertDialog.show();
Button button = alertDialog.getButton(DialogInterface.BUTTON_POSITIVE);
button.setBackgroundColor(Color.BLACK);
button.setPadding(0, 0, 20, 0);
button.setTextColor(Color.WHITE);
}
In the setItems
method we pass the array of strings we want to display.
which
argument contains the index of the list item that is clicked.
在setItems
方法中,我们传递要显示的字符串数组。
which
参数包含被单击列表项的索引。
We can customize the Button texts and style by retrieving the Button instances over the alertDialog instance and setting the text color etc.
我们可以通过在alertDialog实例上检索Button实例并设置文本颜色等来自定义Button文本和样式。
colorAccent
value defined in the styles.xml colorAccent
值设置的
public void withMultiChoiceItems(View view) {
final String[] items = {"Apple", "Banana", "Orange", "Grapes"};
final ArrayList selectedList = new ArrayList<>();
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("This is list choice dialog box");
builder.setMultiChoiceItems(items, null,
new DialogInterface.OnMultiChoiceClickListener() {
@Override
public void onClick(DialogInterface dialog, int which, boolean isChecked) {
if (isChecked) {
selectedList.add(which);
} else if (selectedList.contains(which)) {
selectedList.remove(which);
}
}
});
builder.setPositiveButton("DONE", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
ArrayList selectedStrings = new ArrayList<>();
for (int j = 0; j < selectedList.size(); j++) {
selectedStrings.add(items[selectedList.get(j)]);
}
Toast.makeText(getApplicationContext(), "Items selected are: " + Arrays.toString(selectedStrings.toArray()), Toast.LENGTH_SHORT).show();
}
});
builder.show();
}
This is a better version of the simple list of items that we saw earlier.
Each of the items in the list has a CheckBoxbeside it. The isChecked
boolean value returns the checkBox current state.
这是我们之前看到的简单项目清单的更好版本。
列表中的每个项目旁边都有一个CheckBox 。 isChecked
布尔值返回checkBox当前状态。
Once the Button is clicked, we show the list of items that were selected by converting the ArrayList populated of the selectedItems into an Array.
单击“按钮”后,我们将通过将由selectedItems填充的ArrayList转换为Array来显示所选项目的列表。
Using the setView property we can set a custom view from the layout or do that programmatically as well.
In the below function we've done it programmatically.
使用setView属性,我们可以从布局中设置自定义视图,也可以通过编程方式进行。
在下面的函数中,我们以编程方式完成了此操作。
public void withEditText(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("With Edit Text");
final EditText input = new EditText(MainActivity.this);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.MATCH_PARENT);
input.setLayoutParams(lp);
builder.setView(input);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(getApplicationContext(), "Text entered is " + input.getText().toString(), Toast.LENGTH_SHORT).show();
}
});
builder.show();
}
Here we'll inflate a custom layout inside our setView
method.
Following is the layout that'll be shown inside the AlertDialog:
在这里,我们将在setView
方法中setView
自定义布局。
以下是将在AlertDialog中显示的布局:
alert_dialog_with_imageview.xml
alert_dialog_with_imageview.xml
Add the following function inside your MainActivity.java class:
在MainActivity.java类中添加以下函数:
public void withImageView(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater inflater = getLayoutInflater();
View dialogLayout = inflater.inflate(R.layout.alert_dialog_with_imageview, null);
builder.setPositiveButton("OK", null);
builder.setView(dialogLayout);
builder.show();
}
public void withSeekBar(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("With SeekBar");
final SeekBar seekBar = new SeekBar(MainActivity.this);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.MATCH_PARENT);
seekBar.setLayoutParams(lp);
builder.setView(seekBar);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(getApplicationContext(), "Progress is " + seekBar.getProgress(), Toast.LENGTH_SHORT).show();
}
});
builder.show();
}
On clicking the Button we show the progress value of the SeekBar.
单击按钮后,我们将显示SeekBar的进度值。
public void withRatingBar(View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater inflater = getLayoutInflater();
builder.setTitle("With RatingBar");
View dialogLayout = inflater.inflate(R.layout.alert_dialog_with_ratingbar, null);
final RatingBar ratingBar = dialogLayout.findViewById(R.id.ratingBar);
builder.setView(dialogLayout);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
Toast.makeText(getApplicationContext(), "Rating is " + ratingBar.getRating(), Toast.LENGTH_SHORT).show();
}
});
builder.show();
}
Once you've added all the above methods inside the MainActivity.java class let's build and run our application. Following is the output of the above application in action.
在MainActivity.java类中添加了上述所有方法之后,就可以构建并运行我们的应用程序。 以下是上述应用程序的输出。
This brings an end to this tutorial. You can download the project from the link below:
本教程到此结束。 您可以从下面的链接下载项目:
翻译自: https://www.journaldev.com/22153/android-custom-alert-dialog
android自定义对话框