Upload fragments into cloudlike platform and replace existing fragments with new ones?











up vote
-2
down vote

favorite












I am fairly new to programming and after picking up the java basics I started working with android and android studio to programm something I can interact with.



I was now given a task to create a survey app which displays a new question every single week to be answered by my colleagues.



My thinking was to initially save four to five questions and their corresponding answers into the equivilent number of fragments and display them on a tablet. The fragments should be switched every week by using the ScheduledExecuterService.



Now my only question is, how do I "feed" my app new questions to display? I was thinking about uploading new fragments into a cloudlike platform, let the app get its new fragments from there and then replace the old fragments aka old questions with the new fragments aka new questions.



The problem is, I have no idea, how to implement that into my app. I have heared of using HTTP request, but I don't know how to use that either.



Maybe u guys know a better solution to this?










share|improve this question







New contributor




cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    up vote
    -2
    down vote

    favorite












    I am fairly new to programming and after picking up the java basics I started working with android and android studio to programm something I can interact with.



    I was now given a task to create a survey app which displays a new question every single week to be answered by my colleagues.



    My thinking was to initially save four to five questions and their corresponding answers into the equivilent number of fragments and display them on a tablet. The fragments should be switched every week by using the ScheduledExecuterService.



    Now my only question is, how do I "feed" my app new questions to display? I was thinking about uploading new fragments into a cloudlike platform, let the app get its new fragments from there and then replace the old fragments aka old questions with the new fragments aka new questions.



    The problem is, I have no idea, how to implement that into my app. I have heared of using HTTP request, but I don't know how to use that either.



    Maybe u guys know a better solution to this?










    share|improve this question







    New contributor




    cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      -2
      down vote

      favorite









      up vote
      -2
      down vote

      favorite











      I am fairly new to programming and after picking up the java basics I started working with android and android studio to programm something I can interact with.



      I was now given a task to create a survey app which displays a new question every single week to be answered by my colleagues.



      My thinking was to initially save four to five questions and their corresponding answers into the equivilent number of fragments and display them on a tablet. The fragments should be switched every week by using the ScheduledExecuterService.



      Now my only question is, how do I "feed" my app new questions to display? I was thinking about uploading new fragments into a cloudlike platform, let the app get its new fragments from there and then replace the old fragments aka old questions with the new fragments aka new questions.



      The problem is, I have no idea, how to implement that into my app. I have heared of using HTTP request, but I don't know how to use that either.



      Maybe u guys know a better solution to this?










      share|improve this question







      New contributor




      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I am fairly new to programming and after picking up the java basics I started working with android and android studio to programm something I can interact with.



      I was now given a task to create a survey app which displays a new question every single week to be answered by my colleagues.



      My thinking was to initially save four to five questions and their corresponding answers into the equivilent number of fragments and display them on a tablet. The fragments should be switched every week by using the ScheduledExecuterService.



      Now my only question is, how do I "feed" my app new questions to display? I was thinking about uploading new fragments into a cloudlike platform, let the app get its new fragments from there and then replace the old fragments aka old questions with the new fragments aka new questions.



      The problem is, I have no idea, how to implement that into my app. I have heared of using HTTP request, but I don't know how to use that either.



      Maybe u guys know a better solution to this?







      android http android-fragments timer cloud






      share|improve this question







      New contributor




      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Nov 19 at 14:02









      cevapcichi

      1




      1




      New contributor




      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      cevapcichi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





























          active

          oldest

          votes











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


          }
          });






          cevapcichi is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376316%2fupload-fragments-into-cloudlike-platform-and-replace-existing-fragments-with-new%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          cevapcichi is a new contributor. Be nice, and check out our Code of Conduct.










           

          draft saved


          draft discarded


















          cevapcichi is a new contributor. Be nice, and check out our Code of Conduct.













          cevapcichi is a new contributor. Be nice, and check out our Code of Conduct.












          cevapcichi is a new contributor. Be nice, and check out our Code of Conduct.















           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376316%2fupload-fragments-into-cloudlike-platform-and-replace-existing-fragments-with-new%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

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'