skip to Main Content

com.google.firebase.database.DatabaseException: Failed to convert value of type java.lang.Boolean to String What is it about?

the application worked fine, but then it started crashing when I started the given activity private void loadSpins() { reference.child(FirebaseAuth.getInstance().getUid()).addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot snapshot) { UserModelTask modelTask = snapshot.getValue(UserModelTask.class); if (snapshot.exists()) { currentSpin = modelTask.getSpins(); binding.currentSp.setText(String.valueOf(currentSpin));…

VIEW QUESTION

Firebase – Get just records count of a realtime database without retrieving all dates from database

UPDATED My current code to get records count: commentRef.child(poi.Id).addListenerForSingleValueEvent(new ValueEventListener() { @SuppressLint("NotifyDataSetChanged") @Override public void onDataChange(@NonNull DataSnapshot snapshot) { commentList.clear(); setProgressDialog(); if (isAdded()) { counterValue = (int) snapshot.getChildrenCount(); setCounter(counterValue); } } This returns me the record count. If will modify…

VIEW QUESTION

Cannot zoom in to current location in Android Studio

public class Game_Activity extends FragmentActivity implements OnMapReadyCallback { private Location currentLocation; private FusedLocationProviderClient fusedClient; private static final int REQUEST_CODE =101; private FrameLayout map; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_game); map=findViewById(R.id.map); fusedClient = LocationServices.getFusedLocationProviderClient(this); getLocation(); } private void getLocation()…

VIEW QUESTION
Back To Top
Search