gpt4 book ai didi

Android 在 SwipeView 中显示数据库

转载 作者:行者123 更新时间:2023-11-30 03:46:30 24 4
gpt4 key购买 nike

我通过 viewpager 有一个带有两个不同 View ( fragment )的 swipeview。我现在想要这两个页面显示来自 sqllite 数据库的不同数据。问题是我无法弄清楚如何做到这一点,从主要 Activity 我无法访问我的 fragment 上的 View (TableLayout)和 fragment 源代码我无法访问数据库因为适配器不会打开(适配器的上下文是 super .getActivity())。有什么办法吗?

fragment 代码:

DBAdapter adapter = new DBAdapter(getActivity());

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub

if(container==null){
return null;
}


layout=(RelativeLayout)inflater.inflate(R.layout.layout_morning, container, false);



adapter.open();
adapter.close();

DBAdapter代码:

    private static String DB_NAME = "database.dat";

private final Context context;
private DatabaseHelper DBHelper;
private SQLiteDatabase db;

public DBAdapter(Context ctx) {
this.context = ctx;
DBHelper = new DatabaseHelper(context);
}

private static class DatabaseHelper extends SQLiteOpenHelper {

DatabaseHelper(Context context) {
super(context, DB_NAME, null, 1);
}

@Override
public void onCreate(SQLiteDatabase db) {

}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

}
}

public DBAdapter open() throws SQLException {

db = DBHelper.getWritableDatabase();
return this;
}

public void close() {
if (db!=null){
db.close();
}
DBHelper.close();
}

错误是 NullPointerException

最佳答案

当然,您可以在 fragment 内访问数据库,您只需要使用 getActivity(); 而不是 this

在 fragment 类中保存图像文件的示例:

db = new DatabaseHandler(getActivity());
ByteArrayOutputStream stream = new ByteArrayOutputStream();
photo.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageInByte = stream.toByteArray();
db.updateUser(imageInByte);
db.close();

关于Android 在 SwipeView 中显示数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14915376/

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