My first app was terrible. In fact, it was so terrible that I pulled it from the store and I don't even bother listing it on my resume anymore. If I had known a little bit about Android development before I wrote it, that app wouldn't have been so terrible. Here’s a list of things to keep in mind when writing your first Android app. These lessons are real mistakes I made when writing the source code for my first app. I’ll show you what those mistakes are later. Keeping these things in mind will help you write an app you can be a little proud of. Of course, if you’re doing the right job as an Android development student, you’ll probably hate the apps you wrote soon anyway, and as @codestandards says, if the code you wrote a year ago doesn’t make you feel uncomfortable, you probably haven’t learned much. If you are an experienced Java developer, items 1, 2, and 5 may not interest you. On the other hand, items 3 and 4 may show you some cool stuff that you may not know yet.
This may seem like an impossible mistake to make for anyone. But it is not. I have made it. I have seen other people make it, and I have seen many people who cannot immediately figure out why it is a mistake. Don't do it. It is a noob move. If MeTrackerStore holds a reference to the Activity when it is passed into its constructor, the Activity will still not be garbage collected (unless the static variable is reassigned to another Activity). This is because mMeTrackerStore is static, and the memory of static variables is not reclaimed until the running process of the program is stopped. If you find yourself trying to do this, there is probably something seriously wrong with your code. For help, check out Google's Udacity course "Android Development for Beginners" Note: Technically, you can hold a static reference to the Context without causing a memory leak, but I would not recommend it.
There are many problems with this code, but I will focus on one of them. In Java, a non-static inner class has an implicit reference to the class object that contains it. In this example, any GetLatAndLongAndUpdateMapCameraAsyncTask object will have a reference to the DefineGeofenceFragment object. The same is true for anonymous classes: they will have an implicit reference to the class object that contains them. This GetLatAndLongAndUpdateMapCameraAsyncTask object has an implicit reference to the Fragment object, an object whose lifecycle we have no control over. The Android SDK is responsible for creating and destroying Fragment objects appropriately, and if the GetLatAndLongAndUpdateMapCameraAsyncTask object cannot be recycled because it is executing, then the objects it holds cannot be recycled either. Here’s a great Google IO video explaining why this happens
This snippet is what Android Studio generated for me when I used the "Generate Getter" code completion. The getter method keeps the 'm' prefix for this instance variable. This is not ideal. (Also, you must be wondering why instance variables are prefixed with an 'm': this 'm' is often used as a prefix for instance variables. It stands for 'member'.) Regardless of whether you think it's a good idea to prefix your instance variables with 'm', here's a rule of thumb: Android Studio can help you write code in the manner you develop. For example, you can use the Code Style box in Android Studio to have Android Studio automatically add 'm' to your instance variables and automatically remove 'm' when it generates getters, setters, and constructor parameters. Android Studio can do a lot of things, and learning shortcuts and activity templates is a good start. I had a method that was over 1000 lines long. Such methods are hard to read, modify, and reuse. Try to write methods that do just one thing. Typically, this means you should be suspicious of any code you write that is over 20 lines long. Here’s where you can recruit Android Studio to help you point out problematic methods: Learn from people who are smarter and more experienced than you This may not seem important, but it was a mistake I made when I wrote my first app. When you are writing programs, you will make mistakes. Other people have already made those mistakes. Learn from others. If you repeat avoidable mistakes, you are wasting your time. Read Pragmatic Programmer. Then read Effective Java. These two books will help you avoid making some common mistakes. After you finish reading these two books, keep learning from smart people. When you write an app, you may encounter a problem that has already been solved by someone else. Moreover, a large number of solutions are open as libraries. Take advantage of them. In my first app, the functionality I wrote was already provided by other libraries, some of which are part of standard Java. Others are libraries like Retrofit and Picasso. If you are not sure what library you should use, there are three things you can do: 1. Listen to Google IO Fragmented podcast episode Writing a good Android app is hard. Don't make it harder by repeating my mistakes. |
<<: Remember! Do not perform time-consuming operations in the UI main thread
>>: Learn more about iOS 9 every day 5: Xcode Code Coverage Tools
Yesterday, I received a message like this in the ...
Common incentive systems include point systems, g...
The development of the Internet has a history of ...
The detailed explanation of the daily budget of B...
How much is the quote for Jinchang takeaway devel...
For newbies in operations, in order to learn oper...
Different from the public account push model, Tou...
The Internet is the most disruptive engine in mod...
There is no doubt that the topic of mini programs...
Guangdiantong is one of Tencent’s two major infor...
1. Get the PMF of the app PMF, or product-market ...
Contact information for Chengdu Tea Tasting: 135-...
The transaction volume on Double 11 this year hit...
2021 is the best of times and the worst of times ...
Nowadays, there are more and more electronic devi...