Не удалось решить исключение времени выполнения в моем проекте - PullRequest
0 голосов
/ 17 сентября 2011

this is the error

Я занимаюсь разработкой небольшого проекта, в котором я получил ошибку, которую не удается решить, показывая принудительное закрытие приложения.Может ли кто-нибудь помочь мне

, и это мой код screen3

public class screen3 extends ListActivity {
    /** Called when the activity is first created. */
    String[] names = new String[] { "India", "Malaysia"};
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.screen3);
        // Create an array of Strings, that will be put to our ListActivity

        // Use your own layout and point the adapter to the UI elements which
        // contains the label
        this.setListAdapter(new ArrayAdapter<String>(this, R.layout.screen3,
                R.id.label, names));
        Button b4=(Button)findViewById(R.id.click);
        b4.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                Intent i2 =new Intent(screen3.this,screen4.class);
                startActivity(i2);
            }
        });
    }

    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);
        // Get the item that was clicked
        Object o = this.getListAdapter().getItem(position);
        String keyword = o.toString();
        if(keyword.equals("India"))
        {
            Intent i=new Intent(screen3.this,new21.class);
            startActivity(i);

        }
        Toast.makeText(this, "You selected: " + keyword, Toast.LENGTH_LONG)
                .show();

    }

}

, а код из 26 строк:

public void onClick(View v) {
                // TODO Auto-generated method stub
                Intent i2 =new Intent(screen3.this,screen4.class);
                startActivity(i2);

, и я проверил, что все в порядке

1 Ответ

0 голосов
/ 17 сентября 2011

У вас есть исключение нулевого указателя в строке 26 в вашем методе Screen3 onCreate ...

...