動的に入力されている ListView があり、ViewFlipper を使用して、最初のリストの項目がクリックされたときにボタン付きの新しい画面に切り替えたいと考えています。
リスト内のアイテムをクリックするとメッセージが表示されるように、既に OnItemClickListener を追加しています。
問題は、onItemClick() メソッドに showNext() メソッドを追加すると、アプリケーションが NullPointerException でクラッシュすることです。
リストのある画面からボタンのある画面に遷移するためのフリッパーを探しているだけです。
これが私が使用しているコードのスニペットです。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
deviceListView = (ListView) findViewById(R.id.deviceList);
listAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1);
setListAdapter(listAdapter);
deviceListView = getListView();
flippy = (ViewFlipper) findViewById(R.id.flipper);
//flippy.setOnClickListener((OnClickListener) this);
//getListView().setOnItemClickListener(new AdapterView.OnItemClickListener()
deviceListView.setOnItemClickListener(new AdapterView.OnItemClickListener()
{
public void onItemClick(AdapterView <?> parent, View v, int position, long id)
{
System.out.println("Before Flipper");
flippy.showNext();
System.out.println("After Flipper");
}
});
getApplicationContext().bindService(
new Intent(this, BrowserUpnpService.class),
serviceConnection,
Context.BIND_AUTO_CREATE
);
}
これが私が使用しているXMLです
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" >
<ViewFlipper
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/deviceList"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ListView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" >
</Button>
</ViewFlipper>
</FrameLayout>
どんな助けでも大歓迎です。
ありがとう :)
アップデート:
これが私が得ているエラーログです:
07-01 12:31:35.548: E/AndroidRuntime(482): FATAL EXCEPTION: main
07-01 12:31:35.548: E/AndroidRuntime(482): java.lang.NullPointerException
07-01 12:31:35.548: E/AndroidRuntime(482): at com.app.browser.BrowseActivity$3.onItemClick(BrowseActivity.java:156)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.widget.AdapterView.performItemClick(AdapterView.java:284)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.widget.ListView.performItemClick(ListView.java:3382)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.widget.AbsListView$PerformClick.run(AbsListView.java:1696)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.os.Handler.handleCallback(Handler.java:587)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.os.Handler.dispatchMessage(Handler.java:92)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.os.Looper.loop(Looper.java:123)
07-01 12:31:35.548: E/AndroidRuntime(482): at android.app.ActivityThread.main(ActivityThread.java:4627)
07-01 12:31:35.548: E/AndroidRuntime(482): at java.lang.reflect.Method.invokeNative(Native Method)
07-01 12:31:35.548: E/AndroidRuntime(482): at java.lang.reflect.Method.invoke(Method.java:521)
07-01 12:31:35.548: E/AndroidRuntime(482): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
07-01 12:31:35.548: E/AndroidRuntime(482): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
07-01 12:31:35.548: E/AndroidRuntime(482): at dalvik.system.NativeStart.main(Native Method)
これが私のメインアクティビティクラスのコードです
setContentView(R.layout.main);
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
Intent intent;
intent = new Intent().setClass(this, BrowseActivity.class);
spec = tabHost.newTabSpec("device")
.setIndicator("Devices", getResources().getDrawable(R.drawable.ic_launcher))
.setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, MediaPlayer.class);
spec = tabHost.newTabSpec("media")
.setIndicator("Media Player", getResources().getDrawable(R.drawable.ic_launcher))
.setContent(intent);
tabHost.addTab(spec);
tabHost.setCurrentTab(0);