У меня есть простое задание Android, которое должно отображать некоторый статус как в виде карты, так и в текстовом виде.
Я сделал это в виде двух макетов, которые я поменял местами с помощью setContentView (). При запуске все работает нормально, отображаю карту. Затем я могу перейти к представлению текстового статуса, нажав кнопку меню и выбрав Вид текста. Но когда я хочу вернуться обратно для сопоставления setContentView (R.layout.main); (этот макет содержит только MapView и линейный макет) выдает следующее исключение:
android.view.InflateException: Binary XML file line #7:
Error inflating class <unknown>
У кого-нибудь есть идеи? Я совершенно новичок в разработке для Android, поэтому не знаю наверняка, что это лучший способ решить проблему.
Список источников:
maptest.java:
public class maptest extends MapActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
MapController mapController = mapView.getController();
mapController.setCenter(new GeoPoint((int)(65.319416667*1000000),
(int)(18.073833333*1000000)));
mapController.setZoom(8);
}
@Override
public boolean onCreateOptionsMenu(Menu menu){
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu, menu);
return true;
}
//@Override
protected boolean isRouteDisplayed() {
return false;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle item selection
switch (item.getItemId()) {
case R.id.map_view:
try{
setContentView(R.layout.main);
}
catch (Exception e) {
System.out.println("Error");
System.out.println(e.toString());
}
return true;
case R.id.text_view:
setContentView(R.layout.statustext);
return true;
default:
return super.onOptionsItemSelected(item);
}
}
}
main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
statustext.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Status text"></TextView>
</LinearLayout>
манифест:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.csr.maptest"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".maptest"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</manifest>
menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/text_view"
android:title="Text view" />
<item android:id="@+id/map_view"
android:title="Map view" />
</menu>