Monthly Archive: February 2015
Android Libs from github
Libs Table of contents Framework EventBus Orm Image Loading Animations Network Widget Material UI TextView/EditText ImageView Button Progressbar/Progress View Menu Dialog ListView/ScrollView GridView RatingView Recyclerview ViewPager ActionBar Fragment Tabs Toast SeekBar Calendar View Layout...
JAVA Question
What happens when this code is compiled and executed? (1 correct answer) import java.util.*; public class HelloWorld{ public static void main(String []args){ List list = new ArrayList(); list.add(null); System.out.println(list.get(0)); } } NullPointerException at seventh...