android - 如何动态添加此 View

标签 android android-layout

我想动态地添加一些 View 。

LinearLayout mDescriptionLayout = (LinearLayout)findViewById(R.id.descriptionLayout); 

LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate (R.layout.bonus_info_item, null,false);
TextView counter = (TextView) view.findViewById(R.id.counter);
TextView descriptionText = (TextView) view.findViewById(R.id.descriptionText);
String [] s = {"","A","B", "C","D"};

for (int i = 1; i < 5; i++){
    counter.setText(String.valueOf(i));
    descriptionText.setText(s[i]);
    mDescriptionLayout.addView(view);
}

这是我的 main.xml,我想在 LinearLayout(@id/descriptionLayout) 中添加这个膨胀 View

<ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true">
    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        <TextView
                android:id="@+id/days"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"   
                android:textSize="12sp"/>

        <LinearLayout
                android:id="@+id/descriptionLayout"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/bonusCardTitleText"
                android:orientation="vertical">

        </LinearLayout>
        </RelativeLayout>
    </ScrollView>

我不明白这里有什么问题,我无法动态添加 View ,而且我总是遇到这个错误。

Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
        at android.view.ViewGroup.addViewInner(ViewGroup.java:3339)
        at android.view.ViewGroup.addView(ViewGroup.java:3210)
        at android.view.ViewGroup.addView(ViewGroup.java:3155)
        at android.view.ViewGroup.addView(ViewGroup.java:3131)

最佳答案

如错误所述,

指定的 child 已经有一个 parent 。您必须先对 child 的 parent 调用 removeView()。

您正在尝试将子 View 添加到父项,而该子项已经有一个父项(在您的 for 循环 的第一次迭代之后)。在 for 循环 中声明和初始化 View 或每次调用 remove() 都应该修复它。我不确定您是否尝试像这样多次添加此 layout 但如果是这样,那么您可以尝试

for (int i = 1; i < 5; i++)
{
    View view = inflater.inflate (R.layout.bonus_info_item, null,false);
    TextView counter = (TextView) view.findViewById(R.id.counter);
    TextView descriptionText = (TextView) view.findViewById(R.id.descriptionText);
    counter.setText(String.valueOf(i));
    descriptionText.setText(s[i]);
    mDescriptionLayout.addView(view);
}

另一种方法是调用 mDescriptionLayout.removeView(view); 但我认为您不想在您的情况下这样做。通过 loop 的每次迭代初始化一个新的 View 应该可以解决您的问题。

关于android - 如何动态添加此 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17596692/

相关文章:

android - 如何在 Android WebView 中操作链接点击的 URL

Android + CardView 为非 L 版本增加边距?

android - 有什么方法可以提高 BitmapFactory.decodeStream() 的速度?

java - 在工具栏中找不到 textView id

android - 如何创建 "informative"首选项

java - 奇怪的用户崩溃报告: Null Pointer exception for something that is definitely there

android - 使用 sl4a 将事件从 python 发送到 javascript

Java:我是否应该使用构造函数来做更多的事情而不仅仅是初始化变量

android - 如何让ImageView与2个Button部分重叠?

android - 将对话框 fragment 标题设置为从右侧显示