You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: mifosng-android/src/main/java/com/mifos/mifosxdroid/dialogfragments/identifierdialog/IdentifierDialogFragment.java
+5-2
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
importandroid.view.ViewGroup;
8
8
importandroid.widget.AdapterView;
9
9
importandroid.widget.ArrayAdapter;
10
+
importandroid.widget.Button;
10
11
importandroid.widget.EditText;
11
12
importandroid.widget.Spinner;
12
13
importandroid.widget.Toast;
@@ -47,6 +48,9 @@ public class IdentifierDialogFragment extends ProgressableDialogFragment impleme
47
48
@BindView(R.id.et_description)
48
49
EditTextet_description;
49
50
51
+
@BindView(R.id.btn_create_identifier)
52
+
Buttonbtn_identifier;
53
+
50
54
@BindView(R.id.et_unique_id)
51
55
EditTextet_unique_id;
52
56
@@ -126,12 +130,12 @@ public void showIdentifierSpinners() {
126
130
127
131
@OnClick(R.id.btn_create_identifier)
128
132
voidonClickCreateIdentifier() {
129
-
130
133
if (et_unique_id.getText().toString().trim().equals("")) {
0 commit comments