簡體   English   中英

在Firebase數據庫中讀寫數據

[英]Reading and writing data in Firebase Database

注意:-對不起,我的英語不好,因為英語不是我的母語,我為此使用了谷歌翻譯器。

我正在使用一個Android Map應用程序,用戶可以在其中找到朋友的當前位置,並使用FireBase實時數據庫存儲當前位置。 因此,當用戶單擊“查找”按鈕時,其朋友的當前位置及其用戶名將顯示在“地圖”上。

但是,當我嘗試從Firebase中獲取用戶數據時,我無法解決一個問題。 它沒有以正確的方式反映出來。 數據反映在日志的兩行中:

  • 第1行:“緯度和經度”為0.0,但電子郵件顯示為
  • 第2行:-緯度和經度正確反映,但電子郵件為空

我不知道如何將兩者合而為一。 我在Google上進行了很多搜索,但失敗了。 請幫助我理解如何以正確的方式完成它。

下面是我的代碼和android studio屏幕截圖。

MainActivity.java

    findfriend.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            startActivity(new Intent(MainActivity.this, MapsActivity.class));
        }
    });

    final TextView tname;
    tname = (TextView) findViewById(R.id.textview);

    ref = FirebaseDatabase.getInstance().getReferenceFromUrl("https://ffinder-b4617.firebaseio.com/Email");
    mReferece2 = ref.child("email");
    mReferece2 = ref.child("location");

    proceed.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

            ref.addValueEventListener(new ValueEventListener() {
                @Override
                public void onDataChange(DataSnapshot dataSnapshot) {
                    for (DataSnapshot dataSnapshot1: dataSnapshot.getChildren()){
                        UserInformation details = dataSnapshot1.getValue(UserInformation.class);

                        String email = details.email;
                        Double lat = details.latitude;
                        Double lon = details.longitude;
                        tname.setText(lat+" "+'\n'+lon+'\n'+email);

                        System.out.println("-->"+ lat+" " + lon+" "+ email);
                    }
                }

                @Override
                public void onCancelled(DatabaseError databaseError) {

                }
            });

        }
    });
}

MapsActivity.java

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_maps);
        Firebase.setAndroidContext(this);

        if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
            checkLocationPermission();
        }

        //Check if Google Play Services Available or not
        if (!CheckGooglePlayServices()) {
            Log.d("onCreate", "Finishing test case since Google Play Services are not available");
            finish();
        } else {
            Log.d("onCreate", "Google Play Services available.");
        }

        auth = FirebaseAuth.getInstance();

        // Obtain the SupportMapFragment and get notified when the map is ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);

 FirebaseDatabase.getInstance().getReference().child("Location");
    }

    @Override
    public void onLocationChanged(Location location) {
        Log.d("onLocationChanged", "entered");

        mLastLocation = location;

        DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
        dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
        Date date = new Date();
        mLastUpdateTime = ((dateFormat.format(date).toString()));

        saveToFirebase();

        if (mCurrLocationMarker != null) {
            mCurrLocationMarker.remove();
        }

        latitude = location.getLatitude();
        longitude = location.getLongitude();

        LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
        MarkerOptions markerOptions = new MarkerOptions();
        markerOptions.position(latLng);
        markerOptions.draggable(true);
        markerOptions.title("Current Position");
        markerOptions.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_MAGENTA));
        mCurrLocationMarker = mMap.addMarker(markerOptions);
        mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
        mMap.animateCamera(CameraUpdateFactory.zoomTo(11));

        Toast.makeText(MapsActivity.this,"Your Current Location", Toast.LENGTH_LONG).show();

        //stop location updates
        if (mGoogleApiClient != null) {
            LocationServices.FusedLocationApi.removeLocationUpdates(mGoogleApiClient, this);
            Log.d("onLocationChanged", "Removing Location Updates");
        }

    }

    public void saveToFirebase() {

        Firebase firebase = new Firebase("https://ffinder-b4617.firebaseio.com").child("Email").child("location");

        Map mLoactions = new HashMap();
        mLoactions.put("timestamp",mLastUpdateTime);
        mLoactions.put("latitude", mLastLocation.getLatitude());
        mLoactions.put("longitude", mLastLocation.getLongitude());

        firebase.setValue(mLoactions);
    }

    @Override
    public void onConnectionFailed(ConnectionResult connectionResult) {
}

    public static final int MY_PERMISSIONS_REQUEST_LOCATION = 99;
    public boolean checkLocationPermission(){
        if (ContextCompat.checkSelfPermission(this,
                Manifest.permission.ACCESS_FINE_LOCATION)
                != PackageManager.PERMISSION_GRANTED) {

            // Asking user if explanation is needed
            if (ActivityCompat.shouldShowRequestPermissionRationale(this,
                    Manifest.permission.ACCESS_FINE_LOCATION)) {

                ActivityCompat.requestPermissions(this,
                        new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
                        MY_PERMISSIONS_REQUEST_LOCATION);


            } else {
                // No explanation needed, we can request the permission.
                ActivityCompat.requestPermissions(this,
                        new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
                        MY_PERMISSIONS_REQUEST_LOCATION);
            }
            return false;
        } else {
            return true;
        }
    }

    @Override
    public void onRequestPermissionsResult(int requestCode,
                                           String permissions[], int[] grantResults) {
        switch (requestCode) {
            case MY_PERMISSIONS_REQUEST_LOCATION: {
                // If request is cancelled, the result arrays are empty.
                if (grantResults.length > 0
                        && grantResults[0] == PackageManager.PERMISSION_GRANTED) {

                    if (ContextCompat.checkSelfPermission(this,
                            Manifest.permission.ACCESS_FINE_LOCATION)
                            == PackageManager.PERMISSION_GRANTED) {

                        if (mGoogleApiClient == null) {
                            buildGoogleApiClient();
                        }
                        mMap.setMyLocationEnabled(true);
                    }

                } else {

                    // Permission denied, Disable the functionality that depends on this permission.
                    Toast.makeText(this, "permission denied", Toast.LENGTH_LONG).show();
                }
                return;
            }
        }
    }

    @Override
    public boolean onMarkerClick(Marker marker) {
        marker.setDraggable(true);
        return false;
    }

    @Override
    public void onMarkerDragStart(Marker marker) {}

    @Override
    public void onMarkerDrag(Marker marker) {}

    @Override
    public void onMarkerDragEnd(Marker marker) {
        end_latitude = marker.getPosition().latitude;
        end_longitude =  marker.getPosition().longitude;

        Log.d("end_lat",""+end_latitude);
        Log.d("end_lng",""+end_longitude);
    }
}

Login.class

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);
        Firebase.setAndroidContext(this);

        auth = FirebaseAuth.getInstance();

        if (auth.getCurrentUser() != null){
            startActivity(new Intent(LoginActivity.this, MainActivity.class));
            finish();
        }

        setContentView(R.layout.activity_login);

        inputEmail = (EditText) findViewById(R.id.email);
        inputPassword = (EditText) findViewById(R.id.password);
        progressBar = (ProgressBar) findViewById(R.id.progressBar);
        btnSignup = (Button) findViewById(R.id.btn_signup);
        btnLogin = (Button) findViewById(R.id.btn_login);
        btnReset = (Button) findViewById(R.id.btn_reset_password);

        auth = FirebaseAuth.getInstance();

        btnSignup.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startActivity(new Intent(LoginActivity.this, SignupActivity.class));
            }
        });

        btnReset.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startActivity(new Intent(LoginActivity.this, ResetPasswordActivity.class));
            }
        });

        btnLogin.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                String email = inputEmail.getText().toString();
                final String password = inputPassword.getText().toString();

                if (TextUtils.isEmpty(email)) {
                    Toast.makeText(getApplicationContext(), "Enter email address!", Toast.LENGTH_SHORT).show();
                    return;
                }

                if (TextUtils.isEmpty(password)) {
                    Toast.makeText(getApplicationContext(), "Enter password!", Toast.LENGTH_SHORT).show();
                    return;
                }
         progressBar.setVisibility(View.VISIBLE);

                //authenticate user
                auth.signInWithEmailAndPassword(email, password)
                        .addOnCompleteListener(LoginActivity.this, new OnCompleteListener<AuthResult>() {
                            @Override
                            public void onComplete(@NonNull Task<AuthResult> task) {

                                progressBar.setVisibility(View.GONE);
                                if (!task.isSuccessful()) {
                                    // there was an error
                                    if (password.length() < 6) {
                                        inputPassword.setError(getString(R.string.minimum_password));
                                    } else {
                                        Toast.makeText(LoginActivity.this, getString(R.string.auth_failed), Toast.LENGTH_LONG).show();
                                    }
                                } else {
                                    Intent intent = new Intent(LoginActivity.this, MainActivity.class);
                                    startActivity(intent);
                                    finish();
       }
      }
    });
  }
 });
 }

    public void userLoginInfo(){

      String email = inputEmail.getText().toString();

        mDatabase = FirebaseDatabase.getInstance().getReference().child("Email").push();
        String userId = mDatabase.child("email").getKey();
        mDatabase.child(userId).setValue(email);
    }
}

UserInformation.class

public class UserInformation {

    public String email;
    public double latitude;
    public double longitude;

    public UserInformation() {
    }

    public UserInformation(String email, double latitude, double longitude) {
        this.email = email;
        this.latitude = latitude;
        this.longitude = longitude;
    }

    public String getEmail() {
        return email;
    }

    public double getLatitude() {
        return latitude;
    }

    public double getLongitude() {
        return longitude;
    }
}

Firebase數據庫屏幕截圖 在此處輸入圖片說明 Android Studio日志截圖 在此處輸入圖片說明

您的userLoginInfo()方法使用push()在數據庫中創建一個唯一密鑰來存儲電子郵件地址,而saveToFirebase()方法以不同的方式存儲緯度/經度值,這意​​味着數據最終存儲在不同的位置。

利用UserInformation對象來標准化數據庫,並使用DatabaseReference#setValue(Object)DataSnapshot#getValue(Class<CT>)來存儲和檢索數據將是有益的。 因此,當您要存儲用戶的位置時,請執行以下操作:

public void saveToFirebase() {
    DatabaseReference ref = FirebaseDatabase.getInstance().getReference().child("Email").push();

    String email = FirebaseAuth.getInstance().getCurrentUser().getEmail();

    UserInformation userInformation = new UserInformation(email, mLastLocation.getLatitude(), mLastLocation.getLongitude());

    ref.setValue(userInformation);
}

然后,要在以后檢索這些詳細信息,可以使用現有的ValueEventListener進行一些調整:

DatabaseReference ref = FirebaseDatabase.getInstance().getReference().child("Email");

ref.addValueEventListener(new ValueEventListener() {
    @Override
    public void onDataChange(DataSnapshot dataSnapshot) {
        for (DataSnapshot child : dataSnapshot.getChildren()){
            UserInformation details = child.getValue(UserInformation.class);

            System.out.println("-->" + details.getLatitude() +" " + details.getLongitude() +" "+ details.getEmail());
        }
    }

    @Override
    public void onCancelled(DatabaseError databaseError) {}
});

希望我正確理解了您的要求,如果有任何遺漏,請告訴我。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM