0

現在のアクティビティ/レイアウトに 3 つ以上の独自の「コンポーネント」を追加すると、アプリケーションがフリーズし、LogCat がヒープ (frag ケース) を 14 MB に増やします。4 番目の「コンポーネント」が追加され、Android がアプリケーションを閉じるように要求するまで、非常に時間がかかります。

いくつかのコンポーネント (EditTexts) と独自の「コンポーネント」を持つアクティビティを作成しました。連絡先アプリ(番号の追加)に似た何かをしたいのですが、材料があります。そこで、LinearLayout を拡張するクラス IngredientsLayout と、Activity-Layout に配置した TextView と「追加」ボタンを含むレイアウト xml ファイルを作成しました。追加ボタンを押すたびに、3 つの EditTexts と ImageButton を持つ単一の IngredientLayout が現在の IngredientsLayout に追加され、追加されたすべての成分を「保持」する必要があります。

私が間違っていることは何ですか?

IngredientsLayout クラス:

public class IngredientsLayout extends LinearLayout {

ImageButton imageButtonAddIngredient;
ArrayList<IngredientLayout> arrayList;

public IngredientsLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    inflater.inflate(R.layout.ingredients_list, this);

    arrayList = new ArrayList<IngredientLayout>();
    imageButtonAddIngredient = (ImageButton) findViewById(R.id.imageButtonAddIngredient);
    imageButtonAddIngredient.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            LinearLayout layout = (LinearLayout) findViewById(R.id.linearLayoutIngredientsList);
            IngredientLayout ingredientLayout = new IngredientLayout(getContext(), null);
            ingredientLayout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,
                    LayoutParams.WRAP_CONTENT));  
            arrayList.add(ingredientLayout);
            layout.addView(ingredientLayout);
        }

    });
}
}

材料_レイアウト.xml:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayoutIngredientsList"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
            android:layout_margin="5dp"
        android:orientation="horizontal" >
        <TextView
            android:id="@+id/textView1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"
            android:text="@string/ingredients_list_name" />
        <ImageButton
            android:id="@+id/imageButtonAddIngredient"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_menu_add_ingredient" />
    </LinearLayout>
</LinearLayout>
</merge>

IngredientLayout クラス:

public class IngredientLayout extends LinearLayout {
public IngredientLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    inflater.inflate(R.layout.ingredients_list_row, this);
}
}

成分リスト行.xml

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/linearLayoutIngredientRow"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

  <EditText
      android:id="@+id/editTextAmount"
      android:layout_width="45dp"
      android:layout_height="fill_parent"
      android:layout_weight="0.11"
      android:ems="10"
      android:hint="@string/ingredients_list_listrow_amount"
      android:inputType="numberDecimal" >

      <requestFocus />
  </EditText>

  <EditText
      android:id="@+id/editTextUnit"
      android:layout_width="60dp"
      android:layout_height="fill_parent"
      android:layout_weight="0.06"
      android:ems="10"
      android:hint="@string/ingredients_list_listrow_unit" /><EditText
      android:id="@+id/editTextName"
      android:layout_width="127dp"
      android:layout_height="match_parent"
      android:layout_gravity="left"
      android:layout_weight="0.005"
      android:ems="10"
      android:hint="@string/ingredients_list_listrow_name" />

<ImageButton
      android:id="@+id/imageButton1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:background="@android:color/transparent"
      android:src="@drawable/ic_menu_cancel" />

</LinearLayout>
</merge>
4

1 に答える 1

0

LinearLayouts は、この種の動的アクセス用ではありません。必要なのは、ListView とアダプターです。

また、アダプターに新しいアイテムを追加するたびに、NottifyDataChanged を呼び出して、リスト ビューを新しいアイテムで更新します。

于 2012-10-28T13:01:22.570 に答える