Gal*_*oso 7 android kotlin firebase google-cloud-firestore
我在从 Firestore 获取数据时遇到问题,在 Java 代码中我们可以这样做:
DocumentReference docRef = db.collection("cities").document("SF");
docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()) {
DocumentSnapshot document = task.getResult();
if (document != null) {
Log.d(TAG, "DocumentSnapshot data: " + task.getResult().getData());
} else {
Log.d(TAG, "No such document");
}
} else {
Log.d(TAG, "get failed with ", task.getException());
}
}
});
Run Code Online (Sandbox Code Playgroud)
但是在 Kotlin 中,当我尝试覆盖该onComplete
函数时,它不可用。那么,我如何才能获得“任务”?
如果您使用的是 Android Studio 3,则可以使用它将Java 代码转换为 Kotlin。将感兴趣的代码放在一个 java 文件中,然后从菜单栏中选择Code > Convert Java File to Kotlin File。
例如,对于您发布的这段代码,转换结果如下所示:
import android.support.annotation.NonNull;
import android.util.Log;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.firestore.DocumentReference;
import com.google.firebase.firestore.DocumentSnapshot;
import com.google.firebase.firestore.FirebaseFirestore;
public class ConversionExample {
private static final String TAG = "ConversionExample";
public void getDoc() {
FirebaseFirestore db = FirebaseFirestore.getInstance();
DocumentReference docRef = db.collection("cities").document("SF");
docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()) {
DocumentSnapshot document = task.getResult();
if (document != null) {
Log.d(TAG, "DocumentSnapshot data: " + task.getResult().getData());
} else {
Log.d(TAG, "No such document");
}
} else {
Log.d(TAG, "get failed with ", task.getException());
}
}
});
}
}
Run Code Online (Sandbox Code Playgroud)
转换为 Kotlin 的文件:
import android.util.Log
import com.google.firebase.firestore.FirebaseFirestore
class ConversionExample {
fun getDoc() {
val db = FirebaseFirestore.getInstance()
val docRef = db.collection("cities").document("SF")
docRef.get().addOnCompleteListener { task ->
if (task.isSuccessful) {
val document = task.result
if (document != null) {
Log.d(TAG, "DocumentSnapshot data: " + task.result.data)
} else {
Log.d(TAG, "No such document")
}
} else {
Log.d(TAG, "get failed with ", task.exception)
}
}
}
companion object {
private val TAG = "ConversionExample"
}
}
Run Code Online (Sandbox Code Playgroud)
请使用“对象”语法:对象表示法
例如Java代码:
button1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// Handler code here.
Toast.makeText(this.MainActivity, "Button 1",
Toast.LENGTH_LONG).show();
}
});
Run Code Online (Sandbox Code Playgroud)
科特林:
button1.setOnClickListener(object: View.OnClickListener {
override fun onClick(view: View): Unit {
// Handler code here.
Toast.makeText(this@MainActivity, "Button 1",
Toast.LENGTH_LONG).show()
}
})
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
9270 次 |
最近记录: |