0
  public class SimpleOptionMenu extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

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

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.icon:     Toast.makeText(this, "You pressed the icon!", Toast.LENGTH_LONG).show();
                            break;
        case R.id.text:     Toast.makeText(this, "You pressed the text!", Toast.LENGTH_LONG).show();
                            break;
        case R.id.icontext: Toast.makeText(this, "You pressed the icon and text!", Toast.LENGTH_LONG).show();
                            break;
    }
    return true;
}
}

我创建并填充了 res/menu/menu.xml 文件。当这个类只扩展 Activity 时,它工作正常,但是当我使用 ListActivity 时,它一直在崩溃。当我使用另一个使用列表活动的应用程序时,我注意到了这一点。[经过漫长而艰苦的搜索。:|]

4

2 回答 2

0

setContentView 可以在 ListActivity 上使用。我假设您的 main.xml 文件有问题。在典型的 ListActivity 中,main.xml 应该至少有 2 个元素,如下所示。如果列表中没有元素,Android 将默认为没有任何 id 的那个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <ListView android:id="@android:id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <TextView android:id="@android:id/empty"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"     
        android:text="@string/txtViewMainTitle" 
        android:layout_gravity="center"/>
</LinearLayout>
于 2011-07-28T13:04:03.650 回答
0

没有看到堆栈跟踪,很难确切地知道发生了什么,但是,ListActivity要求其中的各种元素main.xml具有某些特定的 id。

于 2010-10-26T02:25:24.253 回答