How do I make an activity full screen? Without the notification bar. 38 s 38
In an Android application, how do you start a new activity (GUI) when a button in another activity is clicked, and how do ...
-
April 27, 2022
- 0 Comments
I know how to get the root view with View.getRootView(). I am also able to get the view from a button’s onClick event ...
-
April 27, 2022
- 0 Comments
I know that Activities are designed to represent a single screen of my application, while Fragments are designed to be reusable UI layouts ...
-
April 19, 2022
- 0 Comments
I am trying to work on sending an object of my customer class from one Activity and display it in another Activity. The ...
-
April 19, 2022
- 0 Comments
How can I pass an object of a custom type from one Activity to another using the putExtra() method of the class Intent? ...
-
April 18, 2022
- 0 Comments
The activity hosting this fragment has its onActivityResult called when the camera activity returns. My fragment starts an activity for a result with ...
-
April 16, 2022
- 0 Comments
I want to create a transparent Activity on top of another activity. How can I achieve this? 24 s 24 Add the following ...
-
April 16, 2022
- 0 Comments
In my activity, I’m calling a second activity from the main activity by startActivityForResult. In my second activity, there are some methods that ...
-
April 15, 2022
- 0 Comments
In my Android application, when I rotate the device (slide out the keyboard) then my Activity is restarted (onCreate is called). Now, this ...
-
April 13, 2022
- 0 Comments