ashokmouli / ToDoApp

Android To Do App
0 stars 0 forks source link

[Android Bootcamp] Review my app #1

Open ashokmouli opened 9 years ago

ashokmouli commented 9 years ago

Please review my app @thecodepath @nidhi1608. A few questions:

  1. Is there a way to upload the new version of the code to the emulator when it is running. Every time, I hit the run button on eclipse, it seemed to start up a new emulator. The videos seem to indicate that the new version of the code was being uploaded into a running instance of the emulator
  2. I cannot seem to get hints in the editor for method completion. For instance, if I start typing in findViewById in the toDoActivity class, I don't find it giving me a list of methods that match what I have typed. I have to type in "this" followed by "." at which point it starts giving me the list of methods. The videos seem to indicate that it matches without the "this."
  3. I am still unsure how the "todo.txt" file is saved between invocation of the emulator. Doesn't the emulator start with a clean image and load the new ToDo app. How does it manage to save the file between invocations?

Thanks

-Ashok
(Ashok Mouli)

nidhi1608 commented 9 years ago

Hi Ashok,

  1. It looks like your application target mode is set to manual. To resolve, change your target to automatic from manual by following the steps in this stackoverflow article.
  2. You can use CTRL + SPACE on eclipse for auto complete. If you hit CTRL + SPACE and then type findViewById, you should see a list of suggestions.
  3. The Android Emulator emulates internal storage using a file on your native file system. Whatever data gets persistently committed to your local filesystem thus will be reflected when the emulator restarts.

Let me know if you have any other questions. Also, I don't have you on my class roster. Can you please send me your yahoo email so I can update the list?

ashokmouli commented 9 years ago

Thanks. My work email address is amouli@yahoo-inc.com and my name is Ashok Mouli.

-Ashok

  From: nidhi1608 <notifications@github.com>

To: ashokmouli/ToDoApp ToDoApp@noreply.github.com Cc: ashokmouli ashokmouli@yahoo.com Sent: Monday, November 3, 2014 10:49 AM Subject: Re: [ToDoApp] [Android Bootcamp] Review my app (#1)

Hi Ashok,

nidhi1608 commented 9 years ago

Thanks!

nidhi1608 commented 9 years ago

Your app looks great! This was intended in part to give you an introduction to the general rhythm of this course. The course is entirely project based with an app being assigned each week and then due the following week. Each project builds on the last to help each engineer to learn all practical Android development and best practices as quickly as possible. We also do a code review for each submitted project.

Nice job with the project, hope you found it as a helpful introduction and see you on Tuesday!