(click images for a larger view)
Home » Archives for 11/27/12
Rolls-Royce Ghost One Thousand and One Nights Collection
V12 / 6.592 cc / 570 PS / 575 ft/lb (780 Nm) @ 1.500 / twin turbo / 0 - 62 mph (100 km/h): 5,0 s / Vmax: 155 mph (250 km/h)
(click images for a larger view)
(click images for a larger view)
Query Contacts database, search with selection of LIKE cause.
The previous exercise demonstrate how to "Query Contacts database" for all contacts. To search for contacts with certain constraint in DISPLAY_NAME, we can modify the selection using LIKE cause.
Change:
String selection = ContactsContract.Contacts.DISPLAY_NAME + " IS NOT NULL";
to:
String constraint = "Lau";
String selection = ContactsContract.Contacts.DISPLAY_NAME + " LIKE '%" + constraint + "%'";
Change:
String selection = ContactsContract.Contacts.DISPLAY_NAME + " IS NOT NULL";
to:
String constraint = "Lau";
String selection = ContactsContract.Contacts.DISPLAY_NAME + " LIKE '%" + constraint + "%'";
Android Design in Action: Responsive Design
The special episode focus on tablets and responsive design. Look at the following apps and discuss how they respond to differing device form factors:
-- Android Calendar 3:47
-- Pattrn 8:18
-- Pocket 11:33
-- TED 14:54
-- Google I/O 2012 18:28