inside the animationEnd the set text works perfectly but after calling this void it should change text but it is not changing text. Answer
Tag: android
How can I disable focusable for all XML tags I have? [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. Improve this question I’m writing an Android application in Android Studio on Java. I know that there is andr…
how to add myApp to complete action using?
when you click on a video android give you some suggestion app to open the video i wnat to add my app to the list. name of the list is complete action using and this doc is related https://developer.android.com/training/basics/intents/filters.html but i am beginner and dont know how to use the doc for video a…
How do i get the new Password stored in my firebase realtime database in android studio
I just realized that when I press the forgot password in my app and change the password the password is not changed in the realtime database.Is it possible to change the realtime database as well? This is my forgot password page code this is the value stored in my database Answer Firebase Authentication doesn…
unable to add Firebse to my android studio
I am trying to add firebase to my app and followed every step as told in https://firebase.google.com/docs/android/setup but as soon as a launch the app it crashes with the error I have also cross checked my gradle moudle and every thing seems to be fine, here is my gradle module Even in graple project everyth…
SQL Insert query not storing upon button press
I am creating a project in which a database can be read and modified through an app. The tutorial for the insert section has lost me though. Using lowercase to begin a word causes a syntax error, fine. But, when capitalising the first letter it is accepted. The page then closes and takes you back to the main …
HMS NoClassDefFoundError Android
I’m using HMS plugin for Android Studio. I have a class called MyFirebaseMessagingService which receives notifications from Firebase. it used to be like : after conversion: After converting the code, I had the following problem : I found a suggested solution in Huawei support, but it didn’t work! …
Can’t make a bottomsheet go all the way up screen
I’m an internship in a company and I’m not receiving all the support I’d like to. I have this FAQ screen with a button that should bring up a bottomsheet so the customer can contact us. The problem is, it goes up like 75% and the sheet then has to be dragged up to the ‘send’ butt…
How to exit the app when bottomsheetdialog showing
I have bottomsheet that check if the internet connected or not! if no connected the bottomsheet showed, if not the bottomsheet dismiss. I used bottomSheetDialog.dismiss(); function to prevent the user from pressing the screen to hide the bottomsheet. Now what I want is that the user if press back when bottoms…
How to display ‘thinking’ image while Java method is running on Android app
I’m coding a tic tac toe app in which the user can play against the computer. In one of the difficulties, I’ve implemented an algorithm (minimax) to find the best move, and on the first move, the function which uses this algorithm to make the move seems to take a noticeable time to run. I want to …