天天看点

android 设置listview,如何在android中为listview设置onListItemClick

我需要为列表视图执行onListItemClick事件.我做了以下但没有奏效.我粘贴我的代码和logcat.请帮我.错误是:(

java.lang.RuntimeException:您的内容必须有一个ListView,其id属性为’android.R.id.list’)

public class MyListView extends ListActivity {

// @Override

ListView list1;

private String array[] = { "Iphone", "Tutorials", "Gallery", "Android","item 1", "item 2", "item3", "item 4" };

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

list1 = (ListView) findViewById(R.id.ListView01);

list1.setAdapter(new ArrayAdapter(this,android.R.layout.simple_list_item_1, array));

}

protected void onListItemClick(ListView l, View v, int position, long id) {

super.onListItemClick(l, v, position, id);

Object o = this.getListAdapter().getItem(position);

String pen = o.toString();

Toast.makeText(this, "You have chosen the pen: " + " " + pen, Toast.LENGTH_LONG).show();

}

}

我的日志cat文件:

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sai.ui.listview/com.sai.ui.listview.MyListView}: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ActivityThread.access$1800(ActivityThread.java:112)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.os.Handler.dispatchMessage(Handler.java:99)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.os.Looper.loop(Looper.java:123)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ActivityThread.main(ActivityThread.java:3948)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at java.lang.reflect.Method.invokeNative(Native Method)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at java.lang.reflect.Method.invoke(Method.java:521)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at dalvik.system.NativeStart.main(Native Method)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): Caused by: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ListActivity.onContentChanged(ListActivity.java:236)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:321)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.Activity.setContentView(Activity.java:1631)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at com.sai.ui.listview.MyListView.onCreate(MyListView.java:21)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1132)

04-19 18:12:36.021: ERROR/AndroidRuntime(5162): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)

我的main.xml:

android:orientation="vertical"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:stackFromBottom="true"

>

android:id="@+id/imageview1"

android:layout_width="wrap_content"

android:layout_height="50px"

android:background="@drawable/applicationbar"

android:layout_x="0px"

android:layout_y="0px"

>

android:id="@+id/textview1"

android:layout_width="wrap_content"

android:layout_height="50px"

android:text="TextView"

android:layout_x="0px"

android:layout_y="55px"

>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_marginLeft="10px"

android:layout_marginRight="10px"

android:layout_marginTop="35px"

android:layout_marginBottom="40px"

android:paddingLeft="0px"

android:paddingRight="0px" />