my activity is load a grid view from xml file and the controls from other xml file

     public class ResultActivity extends AppCompatActivity {
    GridView gridview;

    ArrayList<String> arrayList;
    String ip, db, un, passwords;
    Connection connect;
    PreparedStatement stmt;
    ResultSet rs;
    Button TButton;
    @Override

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
         setContentView(R.layout.gridviews);

        TButton = (Button) findViewById(R.id.btnTrans);
        TButton.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v){
                Intent intentLoadNewActivity = new Intent(ResultActivity.this,MyResultsActivity.class);
                startActivity(intentLoadNewActivity);
            }
        });
  try {
            connect = CONN(un, passwords, db, ip);
            Statement statement = connect.createStatement();
            rs = statement.executeQuery(query);
            List<Map<String, String>> data = null;
            data = new ArrayList<Map<String, String>>();
            while (rs.next()) {
                Map<String, String> datanum = new HashMap<String, String>();
                datanum.put("A", "Patient Number: "+rs.getString("PatNumber"));
                datanum.put("B", "Welcome " + rs.getString("PatName"));
               // datanum.put("C","Transaction:" + rs.getString("trano"));

                data.add(datanum);
            }
           // String[] from = { "A", "B","C" };
            String[] from = { "A", "B" };
            int[] views = { R.id.txtPatNumber, R.id.txtpatName};
            final SimpleAdapter ADA = new SimpleAdapter(ResultActivity.this,

                    data, R.layout.patientdata, from, views);
            gridview.setAdapter(ADA);
        } catch (SQLException e) {
            e.printStackTrace();
        }
 }

Recommended Answers

All 5 Replies

It would help if you told us which line throws the NPE, we're not mind readers

what i need is to move to other activity when click the button , which in the patientdata.Xml
and setContentView(R.layout.gridviews), Any Suggestion plzz??

Are you saying that setContentView(R.layout.gridviews) is where you get the NPE? Where is Rdefined. Is it null?

Paste the complete stack trace... It's hard to trace which line exactly throws the NPE.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.