Я создаю XML-макет для своей деятельности - назовем его layout_a.xml
- который выглядит следующим образом:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<include layout="@layout/layout_b"/>
<include layout="@layout/layout_b"/>
</LinearLayout>
Вот layout_b.xml
:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/place_details_list_entry_checkins_history_user_avatar"
android:layout_width="34dip"
android:layout_height="34dip"
android:src="@drawable/icn_profilepic_medium"
android:scaleType="centerCrop"/>
<ImageView
android:id="@+id/place_details_list_entry_checkins_history_user_avatar_provider_icon"
android:layout_gravity="bottom|left"
android:src="@drawable/icn_fb_small"
android:layout_width="11dip"
android:layout_height="11dip"/>
</FrameLayout>`
Я получаюэта ошибка в Eclipse:
Найдена циклическая цепочка: layout_a => layout_b
У кого-нибудь есть подсказка о том, что его вызывает?