,當我需要擴展ListActivity和填充自定義佈局,所以我做了以下安卓:我怎麼填充custome佈局擴展ListActivity
public class BizList extends ListActivity {
String bizNames[]={"one", "two","theree","four"};
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.bizlist);
//ListView listviewMe = (ListView)findViewById(android.R.id.list);
//ListView listview = this.getListView();
setListAdapter(new ArrayAdapter<String>(this, android.R.id.list, bizNames));
/* ListView list1 = (ListView) findViewById(R.id.listView1);
list1.setAdapter(new ArrayAdapter<String>(getApplicationContext(),R.layout.list_item,startDates_str));;*/
}
和我在我的佈局的ListView是
<ListView
android:id="@id/android:list"//***have also tried*** android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/imageView2"
android:layout_centerHorizontal="true" >
</ListView>
但我不斷收到此錯誤
android.content.res.resources $ notfoundexception:文件形式的XML類型的佈局resoucse ID
任何和所有的幫助,不勝感激。我希望這很簡單。 thx agin。
哈利路亞!!!!我可以發誓,我嘗試了這個在我最初的嘗試!!! ....耶穌基督!謝謝你SOOOOO很多!我以爲我瘋了。 – AhabLives
沒問題。樂意效勞。 – Squonk