Я просматриваю документацию по Android, и если я хочу использовать include и merge.
Итак, я открыл eclipse и получил его, чтобы извлечь часть кода, и он сделал в моем макете это
<include layout="@layout/progressbar" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
и другой файл с
<?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>
Тем не менее, когда я пытаюсь сделать это в монодроиде, я получаю сообщения о том, что не удается найти слияние и включить.