Androidでリストビューを作成しようとしていますが、問題が発生しました。
これはコードです:
public class MainActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String[] items = {"red", "blue", "green"};
ListView listView = (ListView) findViewById(R.id.list);
listView.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, items));
}
}
そしてこれは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">
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Agregar Tarea"
android:id="@+id/btn" />
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/list" />
</RelativeLayout>
logcatは、21行目次の行にNullPointerExceptionがあると言っています。
ListView listView = (ListView) findViewById(R.id.list);
しかし、私は理由がわかりません:(
listactivityを使用する場合、ヘッダー/フッターが固定されていないため、この方法でリストビューを実行したいと思います。