У меня есть действие, которое делает это:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.list);
ListView lv = (ListView) findViewById(R.id.ListList);
lv.setItemsCanFocus(true);
lv.setOnItemClickListener(this);
adapter = new ListAdapter(this, lv, model, R.layout.simple, this);
lv.setAdapter(adapter);
}
Мой класс адаптера списка выглядит следующим образом.
public static class ListAdapter extends ArrayAdapter<ListItem>
public ListAdapter(Activity activity, ListView lv, List<ListItem> model, int resource, OnActionClickListener onActionClickListener) {
super(activity, android.R.layout.simple_list_item_1, model);
....
}
Если я изменю ориентацию, примерно в 20 раз, она будетне хватит памяти и выдайте мне такую ошибку:
12-22 17:33:44.977: E/dalvikvm-heap(29145): 1536000-byte external allocation too large for this process.
Если я не настрою оставшуюся часть кода в onCreate (мимо setContentView), у меня не возникнет проблем.
Полагаю, я (неумышленно) держусь за экземпляр действия, но не знаю, как именно.
Есть идеи?
tia.
Итак, причиной проблемы является "lv.setAdapter (adapter);"- если я закомментирую эту строку, у меня нет проблемы ... Я попытался lv.setAdapter (null) в onDestroy () - не помогло.Я также добавил это (http://stackoverflow.com/questions/1147172/what-android-tools-and-methods-work-best-to-find-memory-resource-leaks) в onDestroy ()) - кажется, ничто не помогает.
Итак, я сузил его до минимума.
Вот основной файл TestAppActivity.java.
package com.junk.test;
import java.util.ArrayList;
import java.util.List;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.ContextMenu;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
public class TestAppActivity extends Activity {
protected ArrayList<ListItem> model = new ArrayList<ListItem>();
protected ListAdapter adapter = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ListView lv = (ListView) findViewById(R.id.ListList);
lv.setItemsCanFocus(true);
adapter = new ListAdapter(this, lv, model);
lv.setAdapter(adapter);
if (savedInstanceState == null) {
Log.i("test", "@@ start");
new Thread(new Runnable() {
@Override
public void run() {
try {
boolean change = true;
Thread.sleep(4 * 1000);
for (int ii = 0; ii < 200; ii++) {
setRequestedOrientation(change ? ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE : ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
Thread.sleep(4 * 1000);
change = !change;
Log.i("test", "@@ change: " + (ii+1));
}
} catch (Exception e) {
e.printStackTrace();
} finally {
Log.i("test", "@@ complete!");
}
}
}).start();
}
}
@Override
protected void onDestroy() {
super.onDestroy();
// doesn't make any difference.
// ListView lv = (ListView) findViewById(R.id.ListList);
// lv.setAdapter(null);
// adapter.clear();
// adapter = null;
unbindDrawables(findViewById(R.id.ListList));
System.gc();
}
private void unbindDrawables(View view) {
if (view == null) { return; }
if (view.getBackground() != null) {
view.getBackground().setCallback(null);
}
if (view instanceof ViewGroup) {
for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) {
unbindDrawables(((ViewGroup) view).getChildAt(i));
}
if (view instanceof AdapterView) {
} else {
((ViewGroup) view).removeAllViews();
}
}
}
public static class ListItem {
public int x;
}
public static class ListAdapter extends ArrayAdapter<ListItem> implements View.OnClickListener {
public ListAdapter(Activity activity, ListView lv, List<ListItem> model) {
super(activity.getApplicationContext(), android.R.layout.simple_list_item_1, model);
}
@Override
public void onClick(View v) {
}
}
}
А вот main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/player_background">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<ListView
android:id="@+id/ListList"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:choiceMode="singleChoice"
android:cacheColorHint="#00000000"
android:dividerHeight="3dp"
android:overScrollFooter="@null" />
</LinearLayout>
И это все-таки утечка - занимает примерно 110 или около того изменений ориентации, но в конечном итоге этовыдает ошибку выделения!