gpt4 book ai didi

android - 内容提供者 - 多个 where 参数

转载 作者:太空狗 更新时间:2023-10-29 16:41:36 24 4
gpt4 key购买 nike

我是内容提供商的新手,我一直在引用 this文档以便理解和创建自定义内容提供程序。

我在内容提供者的内容描述符类中有这样的路径:

public static final String PATH = "tbl_reco_index_contents";
public static final String PATH_FOR_ID = "tbl_reco_index_contents/*";

使用下面的代码,我可以毫无问题地从我需要的列中获取数据:

    public static final String AUTHORITY = "com.nyk.launcherprovider";
private static final Uri BASE_URI = Uri.parse("content://" + AUTHORITY);
public static final String PATH = "tbl_reco_index_contents";
public static final Uri CONTENT_URI = BASE_URI.buildUpon().appendPath(PATH).build();
cur = this.getContentResolver().query(CONTENT_URI, new String[]{
"reco_index_content_name",
"reco_index_content_url"
}, null, null, null);

cur.moveToFirst();
for(int i=0;i<cur.getCount();i++){
System.out.println("Name is:"+cur.getString(10));
System.out.println("URL is:"+cur.getString(11));
cur.moveToNext();
}

我不知道如何在这里使用 where 条件获取数据。 IE;如果我需要添加像 WHERE user_profile_number = 2 and pkg_name = 'abc' 这样的条件,我该如何处理它以及上面的代码。

非常感谢任何帮助。

最佳答案

当您使用波纹管语句时,它会调用内容提供程序中的PATH

Cursor cursor = getContentResolver().query(YOUR_URI, null, "user_profile_number = ? AND pkg_name = ? ", new String[]{"2", "abc"}, null);

如果你想根据id调用数据就意味着你想调用PATH_FOR_ID然后使用

Cursor cursor = getContentResolver().query(ContentUris.withAppendedId(CONTENT_URI, id), null, null, null, null);

关于android - 内容提供者 - 多个 where 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16918397/

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