2

编写一个扩展 ListActivity 的应用程序 Menu.java,我在列表活动的顶部添加了一个 TextView 标题。

标题和列表活动的布局正是我想要的,但是当我点击说 Item1 时,吐司会弹出并说“Item2”被选中。当我点击 Item2...“Item3”被选中。但是当我点击 Item3 时,应用程序崩溃并显示一堆运行时错误。

在我实现标头之前它没有这样做。我已经搜索并搜索了 stackoverflow 和 android 开发网站,但似乎找不到答案。

我已经将标题设置为 false,因此它不可点击。

提前致谢!对不起,如果我错过了一些明显的东西......这里是新手。:P

//this is Menu.java


package com.example.mytexts;

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemClickListener;

public class Menu extends ListActivity {

String[] values = new String[] { "Item1", "Item2", "Item3" };

public void onCreate(Bundle biscuits) {
    super.onCreate(biscuits);

    setContentView(R.layout.text_layout);

    ListView lv = getListView();
    LayoutInflater inflater = getLayoutInflater();
    View header = inflater.inflate(R.layout.header,
            (ViewGroup) findViewById(R.id.header__root));
    lv.addHeaderView(header, null, false);

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
            android.R.layout.simple_list_item_1, values);
    setListAdapter(adapter);
}

protected void onListItemClick(ListView l, View v, int position, long id) {
    super.onListItemClick(l, v, position, id);
    String cheese = (String) getListAdapter().getItem(position);
    Toast.makeText(this, cheese + " selected", Toast.LENGTH_SHORT).show();

    try {
        Class ourClass = Class.forName("com.example.addsubtract." + cheese);
        Intent ourIntent = new Intent(Menu.this, ourClass);
        startActivity(ourIntent);

    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }
  }
}


//this is header.xml


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/header__root"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/black"
android:orientation="vertical" >

<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/darkblue"
    android:gravity="center"
    android:padding="10dp"
    android:text="Messages"
    android:textSize="20dp" >
</TextView>

</LinearLayout>


//this is text_layout.xml


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<ListView
    android:id="@+id/android:list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="none" >
</ListView>

<TextView
    android:id="@+id/android:empty"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Nothing to Display" >
</TextView>

</LinearLayout>
4

2 回答 2

10

位置(由 给出onListItemClick)与 ListView 中的项目数(包括页眉(和页脚))相关,而不与适配器相关。

代替:

String cheese = (String) getListAdapter().getItem(position);

采用:

String cheese = (String) l.getItemAtPosition(position);
于 2012-08-20T02:12:34.860 回答
1

尝试使用这个

mLV_list.setOnItemClickListener(this);

public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {

    String element = (String)getListAdapter().getItem(arg2);
    Toast.makeText(this, element+" clicked ", Toast.LENGTH_SHORT).show();
}
于 2012-08-20T02:06:57.693 回答