我的应用程序正在检查 Firebase 实时数据库中是否存在某个数据,并将 addListenerForSingleValueEvent 添加到数据库引用中。我启动项目的模拟器工作正常并且完美地检索数据,但是当我更改模拟器(假设我切换到 PIXEL 3XL)时,侦听器无法工作。我在另一个 stackoverflow 问题中看到有人遇到了同样的问题,并且数据库检索了数据,但是经过很长时间。有谁知道为什么会发生这种情况?我应该继续使用默认模拟器进行开发而不关心实时数据库无法在另一个模拟器上运行吗?你能解释一下为什么会发生这种情况吗?
我在清单中使用它:
...<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>...
摇篮
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath 'com.google.gms:google-services:4.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
gradle(模块)
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 30
buildToolsVersion "30.0.1"
defaultConfig {
applicationId "..."
minSdkVersion 28
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.firebase:firebase-database:19.3.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
编辑1: 添加了代码(它适用于默认模拟器,pixel 3,但不适用于其他模拟器)日志只是为了查看代码是否做了它应该做的事情。
DatabaseReference database, newRef;
protected void onCreate(Bundle savedInstanceState) {
(...)
database = FirebaseDatabase.getInstance().getReference();
newRef = database.child(option).child(strSelectedYear).child(strSelectedMonth).child(strSelectedDay);
newRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
for (DataSnapshot d: dataSnapshot.getChildren()) {
hours.remove(d.getKey());
Log.i("hAI FRAAA", d.getKey());
}
String msg = "";
for (int j = 0;j<hours.size();j+=1)
msg += " " + hours.get(j);
Log.i("Free hours", msg);
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
}
您需要自己进行更多故障排除才能找出问题所在。我会采取的几个步骤:
onCancelled
。至少应该是 public void onCancelled(@NonNull DatabaseError databaseError) { throw databaseError.toException(); }
。我已经处理这个问题几天了。最后将我的物理 Android 设备连接到计算机解决了我的问题。我猜想模拟器的互联网连接并不像 Firestore 预期的那么健康。问题的原因是我的模拟器。
我在最新的 Android 模拟器版本中遇到了同样的问题,我只是替换为预览版本并解决了我的问题。
<revision><major>31</major><minor>1</minor><micro>4</micro></revision>
就是这样。可以使用模拟器,只需确保设备(模拟器)上没有连接Wi-Fi即可。