MapView
をと組み合わせて使用しようとしていListView
ます。私の理解では、クラスで使用するために拡張MapActivity
してから参照を取得する必要があります。ListView
私の問題は、への参照を取得できないことListView
です。
これは私のXMLです:
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/AbsoluteLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_y="0dp"
android:clickable="true" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="268dp"
android:layout_y="151dp" >
</ListView>
</AbsoluteLayout>
これは私が:への参照を取得しようとしている方法ですListView
:
//instance vars
ListView listView;
//get ref to listview
listView = findViewById(R.id.list);
どういうわけか、リストはフィールドではないと言っています。間違って参照していますか?
助けていただければ幸いです。