1

Mono for Android は初めてです。私は Eclipse を使用して Android アプリを開発しましたが、UI の編集でドラッグ アンド ドロップ機能をよく使用します。最近、 http://docs.xamarin.com/guides/android/getting_started/hello%2C_worldのHello Android チュートリアルに従いましたが、エミュレーターでアプリを実行しても問題はありませんでした。ソース モードでレイアウトを簡単に変更できますが、xamarin スタジオでは、コンテンツ モードでの UI のレンダリングに問題があるようです。

mono.android.DesignerException: Could not resolve resource value: 0x1110009.
at mono.android.DesignerSession.load(DesignerSession.java:129)
at mono.android.DesignerSession.processMessage(DesignerSession.java:462)
at mono.android.ListenerThread.processMessages(HostProcessConnection.java:182)
at mono.android.ListenerThread.run(HostProcessConnection.java:156)

誰でもこの問題を経験しましたか?

これは axml ファイルのソースです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
    android:id="@+id/showSecond"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/btntext" />
</LinearLayout>
4

1 に答える 1