- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 ParseQueryAdapter 中,我想返回我正在查询的对象的关系。这是我目前所拥有的;我正在执行查询,检索当前用户创建的所有目标;在 public View getItemView 中,我开始获取对象(目标)的关系。我会创建一个 for 循环,并将结果存储在一个数组中吗?如果是这样,我该如何设置列表中的文本?非常感谢您的帮助!
public class GoalDetailViewAdapter extends ParseQueryAdapter<ParseObject> {
protected ParseObject mPracticeName;
public GoalDetailViewAdapter(Context context) {
super(context, new ParseQueryAdapter.QueryFactory<ParseObject>() {
public ParseQuery create() {
// Here we can configure a ParseQuery to display
// midwives
ParseQuery<ParseObject> query = ParseQuery.getQuery("goal");
query.whereEqualTo("createdby", ParseUser.getCurrentUser());
return query;
}
});
}
@Override
public View getItemView(ParseObject object, View view, final ViewGroup parent) {
if (view == null) {
view = View.inflate(getContext(), R.layout.activity_goal_detail_view, null);
}
//use midwifefirm as item view/list
super.getItemView(object, view, parent);
// find in layout the practice name
TextView titleTextView = (TextView) view.findViewById(R.id.goalname);
//in the midwifefirm data model, call getPracticename
titleTextView.setText(object.getString("goalname"));
TextView practiceTextView = (TextView) view.findViewById(R.id.practicename);
ParseRelation relation = object.getRelation("practicerelation");
relation.getQuery().findInBackground(new FindCallback() {
@Override
public void done(List list, ParseException e) {
if (e !=null) {
//error
}
else {
}
}
});
/*mAddGoal = (ImageButton) view.findViewById(R.id.addgoal);
mAddGoal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(parent.getContext(), AddGoal.class);
v.getContext().startActivity(intent);
}
});*/
return view;
最佳答案
好的,现在我了解了您的情况,我准备好给出答案了。
您需要做的(至少在我看来)是改变您与指针数组的关系。只要您不存储超过数百个指针,那么此设计应该不会出现明显的性能问题。
拥有指向关系的指针数组的巨大好处是它们可以直接包含在查询中。
现在你可以这样做:
public class GoalDetailViewAdapter extends ParseQueryAdapter<ParseObject> {
protected ParseObject mPracticeName;
public GoalDetailViewAdapter(Context context) {
super(context, new ParseQueryAdapter.QueryFactory<ParseObject>() {
public ParseQuery create() {
// Here we can configure a ParseQuery to display
// midwives
ParseQuery<ParseObject> query = ParseQuery.getQuery("goal");
query.whereEqualTo("createdby", ParseUser.getCurrentUser());
// now all the pointers will be populated with data
// once the query returns
query.include("practicerelation");
return query;
}
});
}
@Override
public View getItemView(ParseObject object, View view, final ViewGroup parent) {
if (view == null) {
view = View.inflate(getContext(), R.layout.activity_goal_detail_view, null);
}
//use midwifefirm as item view/list
super.getItemView(object, view, parent);
// find in layout the practice name
TextView titleTextView = (TextView) view.findViewById(R.id.goalname);
//in the midwifefirm data model, call getPracticename
titleTextView.setText(object.getString("goalname"));
TextView practiceTextView = (TextView) view.findViewById(R.id.practicename);
// now you can iterate the practices directly
// note that this is not async no more
List<ParseObject> practices = object.getList("practicerelation")
StringBuilder b = new StringBuilder();
for (ParseObject practice: practices) {
// assuming you have a 'step' col
// this is just for the sake of example
String step = practice.getString("step");
b.append(step);
b.append(",");
}
practiceTextView.setText(b.toString());
return view;
关于android - 解析,安卓; ParseQuery 适配器中的 relation.getQuery(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30111099/
我知道,关系数据库是一种数据库,其中一个表中的字段链接到其他表中的行,就像这样。 但我不明白这对我作为网络开发人员意味着什么! 据我所知,具有联接和嵌套选择的查询会降低性能(尤其是具有数十个联接的 d
我正在逻辑层面上设计一个数据库,以便稍后将其传递给程序员来交付。我只是粗略地了解它们的工作原理,所以我很难简洁地表达我的问题。这是我的问题: 我有一个名为 MEANINGS 的表。 我有一个名为 WO
在 Jira 中,将项目链接在一起既简单又实用。 例如,您可以轻松克隆一个问题:创建问题 100,将其克隆到 101。100 然后显示“这个问题有一个克隆:101”,然后 101 显示“这个问题是一个
所以我有这些实体: Group { id: number; name: string; persons: Person[]; } Person { name: stri
我真不敢相信,经过 5 年的 Rails 编程,我还没有想出一个好的解决方案来解决这个常见问题。另外,我假设这个特定问题有 100 个答案,但我不知道定义(关系?协会?等)来很好地搜索它。所以我们开始
我想在我的数据库记录中包含动态字段。 例如:我想构建一个应用程序供用户创建自己的表单。 用户可以创建以下表单: 个人资料: 全名 街道 工作 电话 首页 工作 移动 兴趣 兴趣 1 兴趣 2 兴趣 3
共有三个表:businesses、categories、categorizations、 CREATE TABLE businesses ( id SERIAL PRIMARY KEY, na
这个问题在这里已经有了答案: How can I vertically center a div element for all browsers using CSS? (48 个答案) 关闭 6
对于问题的错误措辞,我们深表歉意。我是 stackoverflow 的新手,也是 PIG 的新手,正在尝试自己进行实验。 我有一个处理 words.t 文件和 data.txt 文件的场景。 文字.t
关于像Cassandra 这样的反革命NoSQL 数据库的讨论很多。 , CouchDB , Hypertable , MongoDB , Project Voldemort , BigTable ,
我的处境与ICTylor's post here 类似。 . 所以我有: user1=User.find(1); user2=User.find(2); written=Micropost.where
尝试获取与事件关联的用户列表。这是我 Eloquent 模型: 用户.php: public function fbevents() { $this->belongsToMany('Fbeve
我有一个在 MySQL 数据库上运行的 Web 应用程序(正在开发中)。我正在考虑将我的应用程序迁移到 Google App Engine,并希望更好地了解如何将我的简单关系数据库模型转换为非关系方法
我应该在构造函数中放入什么:与实例相关的东西还是与类相关的东西? 考虑这段代码: var count = 0 TView = function (x, y) { this.x = x, this.y
我正在努力使用 postgreSQL,因为我不知道如何将 A 类型的一个实例链接到 B 类型的一组实例。我将举一个简短的例子: 假设我们要建立一个包含音乐专辑和人物的数据库,每个人都有一个他们最喜欢的
我需要检索一个对象并获取关系和嵌套关系。 所以,我有以下三个模型: 用户模型: module.exports = { attributes: { name: { type: '
给定一个表定义: Articles: art_id | name -------|-------------- 1 | article1 2 | article2 3
谁能举例说明“em 是相对于字体大小的,% 是相对于父元素的”? 相对于字体大小和相对于父元素是什么意思? 最佳答案 考虑一下您是否要在另一个框内定义一个框的高度。如果您将高度指定为 50%,它将是包
我有一个多对多关系,当我加载位于此关系一侧的实体时,我希望将另一侧相关实体的 ArrayCollection 视为其属性。然而,这并没有发生——加载的 ArrayCollection 中没有任何元素,
Relation#update(id, attributes) 文档提到“无论对象是否成功保存到数据库,都会返回结果对象。”,而 Relation#update_all (updates, condi
我是一名优秀的程序员,十分优秀!