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:



enter image description here










share|improve this question




























    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:



    enter image description here










    share|improve this question


























      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:



      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 2 days ago









      Kling Klang

      32.1k156287




      32.1k156287










      asked 2 days ago









      balvin

      14




      14
























          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.






          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
            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











          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',
          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








          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.






          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
            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















          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.






          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
            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













          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.






          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 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


















          • 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


















           

          draft saved


          draft discarded



















































           


          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







          Popular posts from this blog

          Feedback on college project

          Futebolista

          Albești (Vaslui)