简体   繁体   中英

Android: Why are all items in my alert dialog null?

I am building an alert dialog box with 3 text fields, 2 buttons and 1 spinner dropdown box. The layout for this is in "custom_dialog.xml".

However, when it pops up all the items are null. I get a null pointer exception. If I add a if condition as shown below, the alert dialog is shown, if not I get a null pointer exception on spinner and the buttons.

Here is the code; Please note that the alert shows up on long click of current view in MainActivity.

View promptsView = li.inflate(R.layout.custom_dialog, null);
AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
alert.setView(promptsView); 
alert.setIcon(R.drawable.airside);
alert.setTitle("Calculate Distance To");
final TextView from = new TextView(MainActivity.this);
from.setText("From: "+item.getTitle1());
final TextView to1 = new TextView(MainActivity.this);
to1.setText("To: "+item.getTitle1());
final TextView result = (TextView) dialog.findViewById(R.id.txt3);
final AlertDialog alertDialog = alert.create();
final Button btn1 = (Button) dialog.findViewById(R.id.btn1);
final Button btn2 = (Button) dialog.findViewById(R.id.btn2);


ArrayAdapter<String> adapter = new ArrayAdapter<String>(MainActivity.this,android.R.layout.simple_spinner_item,airNames);
Spinner spinner = (Spinner) findViewById(R.id.spinner1);
if (spinner!=null){
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener( new OnItemSelectedListener(){
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
toLat=items.get(position).getPosition().latitude;
toLon=items.get(position).getPosition().longitude;
}
 @Override
public void onNothingSelected(AdapterView<?> parent) {

}
});
}

if (btn1!=null)
btn1.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Double dist=calculateDistance(fromLon,fromLat,toLon,toLat);
result.setText(dist.toString());

}

});
if (btn2!=null)
btn2.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
dialog.dismiss();

}

});

alert.show();

Please check how I've added an if condition with spinner, btn1, and btn2. That means those are null every time I run it. With the if condition, the alert dialog pops up and I see all the alert box.

EDIT1:

Logcat error (with the if commands above removed);

12-02 14:44:17.305: E/OK(7093): LONGCLICKED
12-02 14:44:17.335: E/AndroidRuntime(7093): FATAL EXCEPTION: main
12-02 14:44:17.335: E/AndroidRuntime(7093): Process: com.mapsupport, PID: 7093
12-02 14:44:17.335: E/AndroidRuntime(7093): java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.Spinner.setAdapter(android.widget.SpinnerAdapter)' on a null object reference
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.mapsupport.MainActivity$2.onMapLongClick(MainActivity.java:457)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.android.gms.maps.GoogleMap$9.onMapLongClick(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.android.gms.maps.internal.zzk$zza.onTransact(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at android.os.Binder.transact(Binder.java:380)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.android.gms.maps.internal.bb.a(SourceFile:93)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.maps.api.android.lib6.gmm6.c.ac.a(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.maps.api.android.lib6.gmm6.m.bt.f(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.maps.api.android.lib6.gmm6.m.ak.onLongPress(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.maps.api.android.lib6.d.g.onLongPress(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.maps.api.android.lib6.d.h.c(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.google.maps.api.android.lib6.d.i.handleMessage(Unknown Source)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at android.os.Handler.dispatchMessage(Handler.java:102)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at android.os.Looper.loop(Looper.java:135)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at android.app.ActivityThread.main(ActivityThread.java:5375)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at java.lang.reflect.Method.invoke(Native Method)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at java.lang.reflect.Method.invoke(Method.java:372)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:911)
12-02 14:44:17.335: E/AndroidRuntime(7093):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)

NPE occured because the spinner is in the layout of the dialog and not in the layout of the activity.

Add:

alertDialog.show();

after this line of code:

final AlertDialog alertDialog = alert.create();

Then initialize all your views after you call the show() method on your alertDialog and not before it:

TextView result = (TextView) promptsView.findViewById(R.id.txt3);
Spinner spinner = (Spinner) promptsView.findViewById(R.id.spinner1);
final Button btn1 = (Button) promptsView.findViewById(R.id.btn1);
final Button btn2 = (Button) promptsView.findViewById(R.id.btn2);

Also make sure to remove this line at the end from your code:

alert.show();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM