how to minimize, maximize and close my application?
up vote
-5
down vote
favorite
I want to add this feature on my android application.
(minimize, maximize and close whole application)
I know that android version must be higher than 7.
I search the net but I haven't found any solution for it, exactly like below pic:

java
add a comment |
up vote
-5
down vote
favorite
I want to add this feature on my android application.
(minimize, maximize and close whole application)
I know that android version must be higher than 7.
I search the net but I haven't found any solution for it, exactly like below pic:

java
add a comment |
up vote
-5
down vote
favorite
up vote
-5
down vote
favorite
I want to add this feature on my android application.
(minimize, maximize and close whole application)
I know that android version must be higher than 7.
I search the net but I haven't found any solution for it, exactly like below pic:

java
I want to add this feature on my android application.
(minimize, maximize and close whole application)
I know that android version must be higher than 7.
I search the net but I haven't found any solution for it, exactly like below pic:

java
java
edited 2 days ago
Kling Klang
32.1k156287
32.1k156287
asked 2 days ago
balvin
14
14
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
-1
down vote
You can use below code for the following functionality.
1) Minimize Application
On click of minimize button, you should use below code,
Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
startActivity(i);
2) Close Application
To close the application, you can use below code snippet. On click event of close button use below code.
finishAffinity();
System.exit(0);
3) Maximize Application
For this functionality, it is kind of little complicated. Because, there are many things under the hood you need concerned. For the sake of guidance, I would say you need to calculate your desire width and height accordingly(that will different for every device and this will be available on the web can be found very easily). After calculating width and height programmatically, you will have to resize the activity with your calculated width and height. Hope this will help you.
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
-1
down vote
You can use below code for the following functionality.
1) Minimize Application
On click of minimize button, you should use below code,
Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
startActivity(i);
2) Close Application
To close the application, you can use below code snippet. On click event of close button use below code.
finishAffinity();
System.exit(0);
3) Maximize Application
For this functionality, it is kind of little complicated. Because, there are many things under the hood you need concerned. For the sake of guidance, I would say you need to calculate your desire width and height accordingly(that will different for every device and this will be available on the web can be found very easily). After calculating width and height programmatically, you will have to resize the activity with your calculated width and height. Hope this will help you.
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
add a comment |
up vote
-1
down vote
You can use below code for the following functionality.
1) Minimize Application
On click of minimize button, you should use below code,
Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
startActivity(i);
2) Close Application
To close the application, you can use below code snippet. On click event of close button use below code.
finishAffinity();
System.exit(0);
3) Maximize Application
For this functionality, it is kind of little complicated. Because, there are many things under the hood you need concerned. For the sake of guidance, I would say you need to calculate your desire width and height accordingly(that will different for every device and this will be available on the web can be found very easily). After calculating width and height programmatically, you will have to resize the activity with your calculated width and height. Hope this will help you.
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
add a comment |
up vote
-1
down vote
up vote
-1
down vote
You can use below code for the following functionality.
1) Minimize Application
On click of minimize button, you should use below code,
Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
startActivity(i);
2) Close Application
To close the application, you can use below code snippet. On click event of close button use below code.
finishAffinity();
System.exit(0);
3) Maximize Application
For this functionality, it is kind of little complicated. Because, there are many things under the hood you need concerned. For the sake of guidance, I would say you need to calculate your desire width and height accordingly(that will different for every device and this will be available on the web can be found very easily). After calculating width and height programmatically, you will have to resize the activity with your calculated width and height. Hope this will help you.
You can use below code for the following functionality.
1) Minimize Application
On click of minimize button, you should use below code,
Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
startActivity(i);
2) Close Application
To close the application, you can use below code snippet. On click event of close button use below code.
finishAffinity();
System.exit(0);
3) Maximize Application
For this functionality, it is kind of little complicated. Because, there are many things under the hood you need concerned. For the sake of guidance, I would say you need to calculate your desire width and height accordingly(that will different for every device and this will be available on the web can be found very easily). After calculating width and height programmatically, you will have to resize the activity with your calculated width and height. Hope this will help you.
edited 2 days ago
answered 2 days ago
Abdul Waheed
2,35421736
2,35421736
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
add a comment |
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
minimize means you want to send your application back?
– Abdul Waheed
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
2 days ago
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53372178%2fhow-to-minimize-maximize-and-close-my-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown