我这堂课有问题。按下按钮时将调用此活动。当我将Activity扩展到这个类时,程序进入类,但是当我扩展ListActiviy并且我单击按钮时,调试器用红色单词“source not found”告诉我,没有别的,甚至没有logcat中的东西。 如果此活动的xml文件或清单中缺少某些内容,请告诉我。
这是课堂活动:
public class SeeAllEntriesActivity extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_all_entries);
ActivitiesObjects ao = (ActivitiesObjects)this.getApplication();
List<Customer> listOfCostumer = ao.getListOfCustomers();
ListAdapter listAdapter = new ArrayAdapter(this, R.layout.activity_all_entries, listOfCostumer);
ListView listViewCustomer = (ListView) findViewById(R.id.listViewCustomer);
listViewCustomer.setAdapter(listAdapter);
}
}
这是活动的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="all entries" />
<ListView
android:id="@+id/listViewCustomer"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
这是清单的xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application android:name="com.example.testapp.ActivitiesObjects" android:label="@string/app_name">
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="CreateActivity"></activity>
<activity android:name="SeeAllEntriesActivity"></activity>
</application>
</manifest>
提前致谢, 亚历
答案 0 :(得分:2)
我想分享关于ListActivity的一点。
您的布局必须包含一个设置了android:id属性的ListView 到@android:id / list
例如android:id =“@ android:id / list”
您的布局文件将如下所示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="all entries" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
要设置列表适配器,您可以使用 setListAdapter
功能
public class SeeAllEntriesActivity extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_all_entries);
ActivitiesObjects ao = (ActivitiesObjects)this.getApplication();
List<Customer> listOfCostumer = ao.getListOfCustomers();
ListAdapter listAdapter = new ArrayAdapter(this, R.layout.activity_all_entries, listOfCostumer);
// no need to fetch list view instance
// ListView listViewCustomer = (ListView) findViewById(R.id.listViewCustomer);
setListAdapter(listAdapter);
}
}
如果您想拥有listview的实例,那么您可以致电getListView ()
答案 1 :(得分:1)
你忘了2“。”(点)。
替换:
<activity android:name="CreateActivity"></activity>
<activity android:name="SeeAllEntriesActivity"></activity>
使用:
<activity android:name=".CreateActivity"></activity>
<activity android:name=".SeeAllEntriesActivity"></activity>
此外,您的android:label
代码中有2 application
。