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时,它会一直崩溃。当我使用另一个使用列表活动的应用程序时,我注意到了这一点。 [经过长时间的努力搜寻。 :|]
答案 0 :(得分:0)
如果没有看到堆栈跟踪,很难确切知道发生了什么,但是,ListActivity
要求main.xml
中的各种元素具有某些特定的ID。
答案 1 :(得分: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>