私はアンドロイドのドキュメントを見ています。もし私がインクルードとマージを使いたいのであれば。Monodroid - レイアウトを含めるには?
は、だから私は、Eclipseを開いて、アウトコードの一部を抽出するために、それを持って、私はしようとすると、それはまだ私のレイアウトで
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:text="Loading..." android:layout_height="wrap_content" android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/lblLoading" android:layout_marginLeft="180dp" android:layout_marginTop="240dp"></TextView>
<ProgressBar android:id="@+id/progBar" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginLeft="130dp" android:layout_marginTop="230dp"></ProgressBar>
</merge>
この
<include layout="@layout/progressbar" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
と別のファイルを作りましたこれはモノドイドで、私はそれがマージを見つけることができないと言ってエラーを取得し、含める。
「エラーとしての警告」が有効になっていますか?コード補完のために、Android用のMonoには.axmlファイル用のXSDが含まれており、XSDには ' 'または ' 'が指定されていないため、Visual Studioで警告が生成されます。 Android用のMonoは気にしないで、「aapt」に渡します。 –
jonp