gpt4 book ai didi

java - 如何在 Android Firebase 数据库帖子中添加更多参数?

转载 作者:行者123 更新时间:2023-11-29 19:45:27 25 4
gpt4 key购买 nike

我目前正在使用 Firebase github example创建一个应用程序,用户可以在其中注册并发布“状态更新”。我能够正确地做到这一点,但现在我想添加更多参数,比如用户位置(纬度和经度),但我不确定我会把它放在哪里。我不确定在什么时候添加所有要添加的内容。这是我当前的代码:

NewPostActivity:

private DatabaseReference mDatabase;

private EditText mTextField;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_new_post);

mDatabase = FirebaseDatabase.getInstance().getReference();

mTextField = (EditText) findViewById(R.id.postText);

FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fabSubmitPost);
assert fab != null;
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
submitPost();
}
});
}

private void submitPost() {
final String text = mTextField.getText().toString();

if (TextUtils.isEmpty(text)) {
mTextField.setError("Required");
return;
}

final String userId = getUid();
mDatabase.child("users").child(userId).addListenerForSingleValueEvent new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
User user = dataSnapshot.getValue(User.class);

if (user == null) {
Toast.makeText(NewPostActivity.this, "Could not fetch user", Toast.LENGTH_SHORT).show();
} else {
writeNewPost(userId, user.username, text);
}
finish();
}

@Override
public void onCancelled(DatabaseError databaseError) {
Toast.makeText(NewPostActivity.this, databaseError.toString(), Toast.LENGTH_SHORT).show();
}
});
}

private void writeNewPost(String userId, String username, String text) {
String key = mDatabase.child("posts").push().getKey();
Post post = new Post(userId, username, text);
Map<String, Object> postValues = post.toMap();

Map<String, Object> childUpdates = new HashMap<>();
childUpdates.put("/posts/" + key, postValues);
childUpdates.put("/user-posts/" + userId + key, postValues);

mDatabase.updateChildren(childUpdates);
}

这是帖子文件:

public class Post {

public String uid;
public String author;
public String text;
public int likeCount = 0;
public Map<String, Boolean> likes = new HashMap<>();

public Post() {

}

public Post(String uid, String author, String text) {
this.uid = uid;
this.author = author;
this.text = text;
}

@Exclude
public Map<String, Object> toMap() {
HashMap<String, Object> result = new HashMap<>();
result.put("uid", uid);
result.put("author", author);
result.put("text", text);
result.put("likeCount", likeCount);
result.put("likes", likes);

return result;
}
}

最佳答案

为了在保存 Post 时添加 Latitude & Longitude,您可以将这两个参数添加到现有类中,您需要修改 Post 类构造函数添加 2 个参数,例如:

public double lat,lng;

public Post(String uid, String author, String text,double lat,double lng) {
this.uid = uid;
this.author = author;
this.text = text;
this.lat = lat;
this.lng = lng;
}

然后在您的 toMap 函数中,您可以将参数添加到 result 中,例如:

result.put("lat", lat);
result.put("lng", lng);

因此,当您在 writeNewPost 函数中调用构造函数时,您可以更改这一行:

Post post = new Post(userId, username, text);

Post post = new Post(userId, username, text, lat, lng);

现在您的新帖子将与经纬度一起发布

我假设你已经有了纬度和经度

更新

如果您想查看在您发布的位置中发布的帖子,您可以这样做,

在查询postsFirebase 查询 中,您可以添加orderByChildequalTo 过滤器进行比较使用当前的纬度和经度

如果你想根据一些距离过滤它们,那么你将不得不查询所有的帖子,然后在本地比较它们

关于java - 如何在 Android Firebase 数据库帖子中添加更多参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37825795/

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