how to minimize, maximize and close my application?












-6















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:



enter image description here










share|improve this question





























    -6















    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:



    enter image description here










    share|improve this question



























      -6












      -6








      -6








      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:



      enter image description here










      share|improve this question
















      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:



      enter image description here







      java android






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 '18 at 11:09









      Fantômas

      32.6k156389




      32.6k156389










      asked Nov 19 '18 at 9:59









      balvinbalvin

      14




      14
























          1 Answer
          1






          active

          oldest

          votes


















          -1














          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.






          share|improve this answer


























          • 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











          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          -1














          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.






          share|improve this answer


























          • 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
















          -1














          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.






          share|improve this answer


























          • 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














          -1












          -1








          -1







          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.






          share|improve this answer















          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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



















          • 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




















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini