1

ユーザーがリストビューの最初のアイテムをクリックすると、という名前の2番目のアクティビティに移動するように、生成されたアイテムとインテントでMainActivity構成されるAndroidアプリケーションを実行しようとしています。これが私がこれまでにやろうとしてきたことです。Eclipse Androidエミュレーターで実行しようとすると、「残念ながら、myAppが機能しなくなりました」というポップアップが表示されます。ListViewTextViewPortalActivity

public class MainActivity extends ListActivity
{
    final String[] menuItems = {"Portal", "Settings", "Help", "About"};

    @Override
    protected void onCreate (Bundle savedInstanceState)
    {
         super.onCreate(savedInstanceState);
         setListAdapter(new ArrayAdapter<String>(MainActivity.this, R.layout.listview_item, R.id.listview_tv, menuItems));

         ListView yourListView = (ListView) findViewById(R.id.listview_tv);
         yourListView.setOnItemClickListener(new OnItemClickListener() 
         {
              @Override
              public void onItemClick(AdapterView<?> parent, View view, int position, long id)    {
                  if (position == 0)
                  {
                    Intent myIntent = new Intent(MainActivity.this,PortalActivity.class);
                    startActivity(myIntent);
                  }
              }
         });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

listview_item.xml: (メイン アクティビティのレイアウト)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView 
        android:id="@+id/listview_tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:text="TextView"  
    />

</LinearLayout>

PortalActivity は別の定義されたレイアウトを持つ単なるアクティビティです。コメントすると、アプリが実行されてリストビューが表示され、ポータルアクティビティのレイアウトも正常に機能するため、問題はインテントにあると確信しています。

これは Log Cat の StackTrace です

11-06 13:05:35.167: E/AndroidRuntime(1590): FATAL EXCEPTION: main
11-06 13:05:35.167: E/AndroidRuntime(1590): Process: com.example.androidexample, PID: 1590
11-06 13:05:35.167: E/AndroidRuntime(1590): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.androidexample/com.example.androidexample.MainActivity}: java.lang.NullPointerException
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2176)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2226)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.ActivityThread.access$700(ActivityThread.java:135)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1397)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.os.Handler.dispatchMessage(Handler.java:102)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.os.Looper.loop(Looper.java:137)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.ActivityThread.main(ActivityThread.java:4998)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at java.lang.reflect.Method.invokeNative(Native Method)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at java.lang.reflect.Method.invoke(Method.java:515)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:777)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at dalvik.system.NativeStart.main(Native Method)
11-06 13:05:35.167: E/AndroidRuntime(1590): Caused by: java.lang.NullPointerException
11-06 13:05:35.167: E/AndroidRuntime(1590):     at com.example.androidexample.MainActivity.onCreate(MainActivity.java:25)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.Activity.performCreate(Activity.java:5243)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
11-06 13:05:35.167: E/AndroidRuntime(1590):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2140)
11-06 13:05:35.167: E/AndroidRuntime(1590):     ... 11 more

誰かが何が間違っているのか知っていますか? 私はAndroidに非常に慣れていないので、助けてくれてありがとう:)

4

1 に答える 1

1

この呼び出し

     ListView yourListView = (ListView) findViewById(R.id.listview_tv);

リソース ID のレイアウトにnullは が存在しないため、 が返されます。次に、次の行ListViewR.id.listview_tv

     yourListView.setOnItemClickListener(new OnItemClickListener() 

がnullであるNullPointerExceptionため、 を取得します。yourListView

を拡張しているListActivityので、ウィジェットを取得するには、次のようListViewに呼び出す必要があります。getListView()

ListView yourListView = getListView();
于 2013-11-06T18:14:11.720 に答える