gpt4 book ai didi

android - 通知适配器后,notifyDataSetChanged() 不会更新 ListView

转载 作者:太空狗 更新时间:2023-10-29 14:28:44 24 4
gpt4 key购买 nike

我正在尝试在 android 中制作一个文件浏览器,为此我有一个带有 ListView 的布局(下面的代码)。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="500dp"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/tvfileExplorer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fileExplorer"
android:textAppearance="?android:attr/textAppearanceLarge" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_gravity="center_horizontal">
<Button
android:id="@+id/bRoot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margins"
android:layout_weight=".33"
android:text="@string/root" />
<Button
android:id="@+id/bOk"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margins"
android:text="@string/ok"
android:layout_weight=".33"/>
<Button
android:id="@+id/bCancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margins"
android:text="@string/cancel"
android:layout_weight=".33" />
</LinearLayout>
<ListView
android:id="@+id/lvFileList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margins"
android:choiceMode="multipleChoice">
</ListView>
</LinearLayout>

将所有文件和文件夹添加到列表后,我向列表适配器创建一个 notifyDataSetChanged()。但是 ListView 不会更新。您可以在下面看到 Activity 的代码。

public class FileExplorer extends Activity{ 
private File currentDirectory = new File("/");
private List<String> directoryEntries = new ArrayList<String>();
private ArrayAdapter<String> lvFileExplorerListAdapter;
private Activity mActivity;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.file_explorer);
mActivity = this;

lvFileExplorerListAdapter = new ArrayAdapter<String>(mActivity, android.R.layout.simple_list_item_multiple_choice, directoryEntries);

ListView lvFileExplorerList = (ListView)findViewById(R.id.lvFileList);

lvFileExplorerList.setAdapter(lvFileExplorerListAdapter);

Button bCancel = (Button)findViewById(R.id.bCancel);
bCancel.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});

Button bRoot = (Button)findViewById(R.id.bRoot);
bRoot.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
browseToRoot();
}
});

browseToRoot();
}

private void browseToRoot() {
browseTo(new File("/"));
}

private void browseTo(final File aDirectory){
if (aDirectory.isDirectory()){
this.currentDirectory = aDirectory;
fill(aDirectory.listFiles());
}
}

private void fill(File[] files) {
directoryEntries.clear();

if(this.currentDirectory.getParent() != null)
directoryEntries.add(getString(R.string.upOneLevel));

int currentPathStringLenght = this.currentDirectory.getAbsolutePath().length();
for (File file : files){
directoryEntries.add(file.getAbsolutePath().substring(currentPathStringLenght));
}

lvFileExplorerListAdapter.notifyDataSetChanged();
}
}

重要的是要说列表具有她应该具有的值。

有什么建议吗?谢谢

最佳答案

我想通了我的问题...

在布局上,我有包含按钮的线性布局。就像你在上面看到的那样,我有一个 *match_parent* 可以在列表上方绘制。我把它改成了 wrap_content,一切正常。

谢谢大家的帮助!

关于android - 通知适配器后,notifyDataSetChanged() 不会更新 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9164878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com