android studio :Attempt to invoke virtual method on a null object reference
android studio :Attempt to invoke virtual method on a null object reference can someone help me? whenever i click on the dialoginterface.onclicklistener button the app just crashes can anyone check for me my codes . ALso when i want the same dialoginterface button to retrieve the inserted data from database to be viewed as a list view ill provide with database and page codes public class mainscreen extends AppCompatActivity { private static final String TAG = "ListDataActivity"; ImageButton add; DatabaseHelper db; private ListView listView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_mainscreen); listView = (ListView)findViewById(R.id.listview); add = (ImageButton) findViewById(R.id.addbtn); //populateListView(); add.setOnClickListener(new View.OnClickListener() { @Override public void onClick...