以下xml代碼中的按鈕根本不可見。有人能指導我哪裏出錯嗎?按鈕在Android活動中不可見
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/addBtn"
android:text="Add New Item"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="addItems"
/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"
/>
</LinearLayout>
的OnCreate中()如下:
ArrayList<String> listItems=new ArrayList<String>();
ArrayAdapter<String> adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
adapter=new ArrayAdapter<String>(MainActivity.this,R.layout.abc, listItems);
setListAdapter(adapter);
}
請包含onCreate()代碼。你有setContentView()嗎? – Melquiades
在活動中不可見嗎?請發佈活動代碼,作爲一個獨立的XML,工作正常 – user2450263
似乎有人忘記添加** setContentView(R.layout.yourContainer); **在他的onCreate ... –