gpt4 book ai didi

android - 保存 ListView 滚动位置并在返回时恢复该位置

转载 作者:太空狗 更新时间:2023-10-29 15:02:47 25 4
gpt4 key购买 nike

我正在使用自定义 ArrayAdapter 来显示我的 listView

这是我的代码,我想在进入 Activity 时保存我的滚动位置并在返回时恢复它。 谢谢
包 ir.ebiroux.love; 导入 java.io.FileNotFoundException; 导入 java.io.FileOutputStream; 导入java.io.IOException; 导入 java.io.InputStream; 导入 java.io.OutputStream; 导入 java.util.List;

import ir.ebiroux.database.DBAdapter;
import ir.ebiroux.database.Dastan;
import ir.ebiroux.love.R;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.annotation.SuppressLint;
import android.app.ListActivity;
import android.content.Intent;

public class MainActivity extends ListActivity {
DBAdapter db;
List<Dastan> dastanha;
ListView lst;

boolean isAll;

@SuppressLint("SdCardPath")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);


Button btn_all = (Button) findViewById(R.id.main_all);
Button btn_fav = (Button) findViewById(R.id.main_fav);



isAll =true;// pish farz "All" hast
lst = getListView();
db = new DBAdapter(getBaseContext());
db.open();
Log.i(DBAdapter.TAG, "3");
dastanha = db.getAllContacts();
Log.i(DBAdapter.TAG, "4");

if (dastanha.size() == 0) {

String destPath = "/data/data/" + getPackageName() + "/databases";

try {
CopyDB(getBaseContext().getAssets().open("mydb"),
new FileOutputStream(destPath + "/dastanha"));
Log.i(DBAdapter.TAG, "db copy shod");


dastanha = db.getAllContacts();

refreshDisplay()

Log.i(DBAdapter.TAG, dastanha.size() + "= tedad dastanha");


} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

} else {
refreshDisplay();
}



btn_all.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
dastanha = db.getAllContacts();
isAll =true;
refreshDisplay();
}
});
btn_fav.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
dastanha = db.findFAVContacts();
isAll=false;
refreshDisplay();
}
});





}

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);

Dastan dastan = dastanha.get(position);// migim dastani ke rush kelik


Intent next = new Intent(this, ShowDastan.class);
next.putExtra("thisdastan", dastan);
startActivity(next);

}


public void CopyDB(InputStream inputStream, OutputStream outputStream)
throws IOException {
// ---copy 1K bytes at a time---
byte[] buffer = new byte[1024];
int length;
while ((length = inputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length);
}
inputStream.close();
outputStream.close();
}

public void refreshDisplay() {
Log.i(DBAdapter.TAG, dastanha.size() + "= tedad dastanha");
// ye log zadim befahmim ki be kiye

ArrayAdapter<Dastan> adapter = new DastanAdapter(this, dastanha);

setListAdapter(adapter);
}

@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();

if (isAll) {
dastanha = db.getAllContacts();
}else {
dastanha=db.findFAVContacts();
}

refreshDisplay();
}
}

最佳答案

你应该在这里@Override 2个更多的方法。一种用于将当前滚动位置更新/保存到变量“onScroll”中。为了触发它,请将“implements OnScrollListener”添加到 ListActivity 定义的签名中。然后在 onCreate 中调用“getListView().setOnScrollListener(this)”来注册您的滚动监听器。或者,您可以按照与点击监听器相同的方式执行此操作,只是不要忘记注册。

最后,覆盖 Activity 的“onSaveInstanceState(Bundle yourBundle)”方法并将您最近更新的滚动位置保存到包中。

然后您可以在“onCreate”方法的包中检索保存的滚动位置,当您返回此 Activity 时,该位置已经存在。使用这些位置以编程方式设置 ListView 的滚动位置。

Ps:很抱歉,从 SO 的 Android 应用程序编写任何代码都不是很方便,但谷歌是您寻找缺失 fragment 的 friend 。

关于android - 保存 ListView 滚动位置并在返回时恢复该位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24793292/

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