1

我见过类似的问题,但似乎没有一个与我的完全一样,而且我无法理解答案,所以我希望你能帮助我。我所指的线程以某种方式解决了异步任务或其他问题的问题,但我不确定那是什么。我有一个问题,我有一个布局,它有一个 TextView 和一个 ListView。ListView 和 TextView 都是动态更新的。根据我更新列表(并登录 LogCat)的方法,添加了条目。

12-23 18:31:03.185: D/FileHandle.readList(24083): 读取 1 个条目

12-23 18:31:03.185: D/MainActivity.updateList(24083): 用 1 个条目更新列表

但我只看到 TextView 而没有列表。这是布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/txt_path"
        android:textSize="25sp" />

    <ListView android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:id="@+id/list"
        android:longClickable="true" >
    </ListView>
       <!--android:id="@android:id/list" />-->

</LinearLayout>

以下是读取和更新列表的代码:

private TextView mPathView;
private ListView mListView;
private String mPath;
private String mCurrentList;
private ArrayList<ListEntry> mList = new ArrayList<ListEntry>();
private ArrayAdapter<String> mAdapter;
private List<String> mListContent = new ArrayList<String>();


/**
 * Calls readList(mCurrentList)
 */
private void readList() {
    readList(mCurrentList);
}
/**
 * Reads items from list into mListContent
 * 
 * @param listName name of the list
 */
private void readList(String listName) {
    if (mCurrentList.compareToIgnoreCase(listName) != 0) {
        mPath += "/" + listName;
    }
    mCurrentList = listName;
    Log.d(TAG + ".readList", "Reading List " + listName);
    mList = FileHandle.readList(context, listName);
}
/**
 * Updates the list shown with the content of mListContent.
 */
private void updateList() {
    mListContent.clear();
    for (ListEntry e : mList) {
        mListContent.add(e.toString());
    }
    
    Log.d(TAG + ".updateList", "Updating List with " + mList.size() + " entries");
    mAdapter.notifyDataSetChanged();
}

FileHandle 中的静态方法正在工作。我之前在没有布局和没有 TextView 的情况下测试了代码,只有普通的 ListView,它可以工作。

这是我的 onCreate 方法

/**
 * (non-Javadoc)
 * @see android.app.Activity#onCreate(android.os.Bundle)
 */
@Override
public void onCreate(Bundle icicle) {
    Log.d(TAG + ".onCreate", "Launching Activity");
    super.onCreate(icicle);
    setContentView(R.layout.main_layout);
    
    MainActivity.context = getApplicationContext();
    mPathView = (TextView) findViewById(R.id.txt_path);
    mPath = mCurrentList = getString(R.string.rootlist);
    mListView = (ListView) findViewById(R.id.list);
    ListEntry.init(getApplicationContext());
    FileHandle.init(getApplicationContext());
    
    
    mAdapter = new ArrayAdapter<String>(this, 
                       android.R.layout.simple_list_item_1, mListContent);
    
    mPathView.setText(mPath);
    mListView.setAdapter(mAdapter);
    
    readList();
    updateList();
  }

如果有人能给我一个正确方向的提示,那就太好了!

您只能看到 TextView,而不是 List

4

1 回答 1

1

根本问题
我不相信我花了这么长时间才注意到......但你需要使用vertical方向:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

ListView 一直不在屏幕上。


其他潜在问题
您需要在填充后将新的适配器传递给您的mAdapterListView setAdapter()notifyDataSetChanged()在这种情况下不会做你想做的事。


或者,您可以稍微更改代码的顺序,在onCreate()

mAdapter = new ArrayAdapter<String>(this,
        android.R.layout.simple_list_item_1, mListContent);

mListView.setAdapter(mAdapter);

readList();
updateList();

接下来制作mListContent一个列表:

List<String> mListContent = new ArrayList<String>();

最后改变updateList()

private void updateList() {
    mListContent.clear();
    for (int i = 0; i < mList.size(); i++) {
        mListContent.add(mList.get(i).toString());
    }

    Log.d(TAG + ".updateList", "Updating List with " + mList.size() + " entries");
    mAdapter.notifyDataSetChanged();
}

按照这个顺序,notiftyDataSetChanged()应该可以工作。

于 2012-12-23T17:48:21.833 回答