0

我有一个动态填充的 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);
4

1 回答 1

0

你没有打电话setContentView(R.layout.yourlayoutname);,这意味着你的布局没有被放到屏幕上。结果是它将findViewById()返回 null 给你。由于您正在尝试调用null.showNext();,因此您在该行上得到了一个 nullPointerException 。

于 2012-06-30T20:55:05.773 回答