我正在尝试在Tab中嵌入listactivity。但是当我运行应用程序时。它停止工作并强迫我关闭应用程序。看看以下链接中的程序:
答案 0 :(得分:0)
我看到了你的代码。我找到了两个错误,在Manifest.xml
和Places.java
中。
在Manifest
文件中,您已定义City Activity
两次。
只需删除该行
<activity android:name=".City" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"></activity>
并在Place.java
中,
只需替换
setListAdapter(new ArrayAdapter<String>(this,R.layout.places_list,PLACES));
通过
setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,PLACES));