File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ Create object of SingleSelectionDialog with Builder for using the Single Selecti
4545 SingleSelectionDialog singleSelectionDialog = new SingleSelectionDialog.Builder(context, "TEST")
4646 .setTitle("Select Number")
4747 .setContent(stringArrayList) // Set ArrayList you want to show.
48- .setColor(getResources().getColor(R.color.colorPrimaryDark)) // Set Dialog Color.
49- .setSelectedField(currentField) // Set Current or Default field if any.
50- .enableSearch(true, "Search your number") //Set Search Feature.
51- .setTextColor(getResources().getColor(R.color.colorAccent)) //Set Text Color.
48+ .setColor(getResources().getColor(R.color.colorPrimaryDark))
49+ .setSelectedField(currentField)
50+ .enableSearch(true, "Search your number")
51+ .setTextColor(getResources().getColor(R.color.colorAccent))
5252 .setListener(new SingleSelectionListener() {
5353 @Override
5454 public void onDialogItemSelected(String s, int position, String tag) {
@@ -58,7 +58,7 @@ Create object of SingleSelectionDialog with Builder for using the Single Selecti
5858 @Override
5959 public void onDialogError(String error, String tag) {
6060 }
61- }) //Set Listener.
61+ })
6262 .build();
6363
6464
You can’t perform that action at this time.
0 commit comments