how to minimize, maximize and close my application?
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 android
add a comment |
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 android
add a comment |
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 android
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 android
java android
edited Nov 19 '18 at 11:09
Fantômas
32.6k156389
32.6k156389
asked Nov 19 '18 at 9:59
balvinbalvin
14
14
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
Nov 19 '18 at 10:14
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
Nov 19 '18 at 10:14
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
add a comment |
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
Nov 19 '18 at 10:14
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
add a comment |
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 Nov 19 '18 at 10:12
answered Nov 19 '18 at 10:07
Abdul WaheedAbdul Waheed
2,64321838
2,64321838
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
Nov 19 '18 at 10:14
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
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
Nov 19 '18 at 10:14
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
Nov 19 '18 at 10:14
No, this is worng. I want to minimize my application meanwhile I can work with it . by this code , my application close
– balvin
Nov 19 '18 at 10:14
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
minimize means you want to send your application back?
– Abdul Waheed
Nov 19 '18 at 10:15
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
I want exactly like my picture . i want to make my application screen smaller than before .
– balvin
Nov 19 '18 at 10:17
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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