我发现了 android 编程,我面临以下错误:textview 无法转换为 org.mapsforge.android.maps.MapView。
以下命令正在生成此错误:
this.vuemap = (MapView) findViewById(R.id.vuemap);
我的 mainscreen.xml 如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainView"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/trtext"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#47FFFFFF"
android:gravity="right"
android:text="0"
android:textSize="50dp">
</TextView>
<TextView
android:id="@+id/tltext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#47000000"
android:text="0"
android:textSize="50dp" >
</TextView>
<org.mapsforge.android.maps.MapView
android:id="@+id/vuemap"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" >
</org.mapsforge.android.maps.MapView>
</RelativeLayout>`
比较奇怪的是,如果我在布局中反转 textview/mapview 的位置,就没有问题了。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainView"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<org.mapsforge.android.maps.MapView
android:id="@+id/vuemap"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" >
</org.mapsforge.android.maps.MapView>
<TextView
android:id="@+id/trtext"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#47FFFFFF"
android:gravity="right"
android:text="0"
android:textSize="50dp">
</TextView>
<TextView
android:id="@+id/tltext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#47000000"
android:text="0"
android:textSize="50dp" >
</TextView>
</RelativeLayout>`