我正在尝试将 aMapView
与 a 结合使用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);
出于某种原因,它说列表不是一个字段。我是否错误地引用它?
任何帮助表示赞赏。