Android App Development : Quick Tips

Points Covered Data Types Async Tasks Logging DialogBox WebView SuppressLint Data types Array Equivalent // declaring a list of integer private List List; // reserving the space for list elements List = new ArrayList(3); ArrayList nameValuePairs = new ArrayList(); nameValuePairs.add(new BasicNameValuePair("Your_var_1", value)); nameValuePairs.add(new BasicNameValuePair("Your_var_2", value)); Map<String, List> assocArr = { ‘title1’: [‘haha’, ‘hehe’], ‘huhuh3’: [‘hihihi’, … Continue reading Android App Development : Quick Tips