У меня есть ViewSwitcher и я хочу добавить в него представления:
// initialize views
final ViewSwitcher switcher = new ViewSwitcher(this);
layMenu = (LinearLayout)findViewById(R.id.menu_main_view);
final LevelPicker levelPicker = new LevelPicker(getApplicationContext());
(//)switcher.addView(layMenu);
(//)switcher.addView(findViewById(R.layout.menu_switcher));
Один - это пользовательский вид, другой - из XML. Я прокомментировал один из них, но они оба, кажется, выбрасывают IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
Я пытался сделать несколько вещей, таких как сначала поместить представления в «контейнер» (другой макет), или попытался удалить ViewView ((View) getParent), как я полагаю, что logcat пытается сказать ..
Вот мой xml-файл (в двух словах):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/menu_main_view">
<TextView>
</TextView>
<LinearLayout>
<Button></Button> //couple of buttons
</LinearLayout>
</LinearLayout> //this is the parent i guess
Мое первое предположение состояло в том, что все дочерние элементы должны были быть у одного родителя, что в моем случае является LinearLayout. Это не похоже на работу.
Спасибо