我在setcontentview上遇到错误,它没有采用布局main.Resource文件没有创建,任何人都可以解决我的问题。
这是我的主屏幕代码。
SqlitetestActivity.java文件
public class SqlitetestActivity extends ListActivity {
protected EditText searchText;
protected SQLiteDatabase db;
protected Cursor cursor;
protected ListAdapter adapter;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
searchText = (EditText) findViewById(R.id.searchText);
db = (new DatabaseHelper(this)).getWritableDatabase();
}
public void onListItemClick(ListView parent, View view, int position, long id) {
Intent intent = new Intent(this, StudentDetails.class);
Cursor cursor = (Cursor) adapter.getItem(position);
intent.putExtra("EMPLOYEE_ID", cursor.getInt(cursor.getColumnIndex("_id")));
startActivity(intent);
}
public void search(View view) {
// || is the concatenation operation in SQLite
cursor = db.rawQuery("SELECT _id, firstName, lastName, title FROM employee WHERE firstName || ' ' || lastName LIKE ?",
new String[]{"%" + searchText.getText().toString() + "%"});
adapter = new SimpleCursorAdapter(
this,
R.layout.employee_list_item,
cursor,
new String[] {"firstName", "lastName", "title"},
new int[] {R.id.firstName, R.id.lastName, R.id.title});
setListAdapter(adapter);
}
}
我的main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingTop="4dp">
<include android:id="@+id/search" layout="@layout/search" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/search"
android:drawSelectorOnTop="false"/>
</RelativeLayout>
我已经尝试重新启动eclipse ..这个doest工作。任何能够解决这个问题。请坚持我...感谢adbvance
答案 0 :(得分:2)
检查您是否导入了正确的R文件。
如果android.R有导入...删除它并清理你的项目。
答案 1 :(得分:2)
只需采取两个步骤,问题就更有可能得到解决:
第1步:单击项目 - &gt;清理项目;干净。
第2步:点击Project - &gt;重建项目。全部构建。
还要确保您的布局xml文件没有语法错误,并且您没有任何具有不可接受名称的图像(例如图像名称之间的“ - ”)。