You can take picture the barcode of a book, find information about it, that is found at Google Books APIs and the user can read reviews from other users of the App, and even add his own review. The current version READ MORE
Month: May 2017
Upgrading CPU!!!
Previously used cpu was G3258 overclocked to 4.5Ghz, the results were impressive for a so low priced cpu. The new one is i5-4690k with 4 Cores, 4 Threads. A good comparison among them http://cpu.userbenchmark.com/Compare/Intel-Pentium-G3258-vs-Intel-Core-i5-4690K/2434vs2432 http://cpuboss.com/cpus/Intel-Pentium-G3258-vs-Intel-Core-i5-4690K
Barcode Scanner
static final String SCAN = “com.google.zxing.client.android.SCAN”; try { //this intent is used to call start for bar code Intent in = new Intent( SCAN ); in.putExtra( “SCAN_MODE”, “PRODUCT_MODE” ); startActivityForResult( in, 0 ); } catch ( ActivityNotFoundException e) { showDialog( READ MORE
IntentService Basics
https://code.tutsplus.com/tutorials/android-fundamentals-intentservice-basics–mobile-6183 Android Fundamentals: IntentService Basics by Shane Conder & Lauren Darcey14 Jun 2011 Difficulty:IntermediateLength:MediumLanguages:English Android SDKMobile Development This post is part of a series called Android Fundamentals. Android Fundamentals: Database Dates and Sorting Android Fundamentals: Picking App Components Today READ MORE
maps google
<uses-permission android:name=”ANDROID.PERMISSION.INTERNET” /> <uses-permission android:name=”ANDROID.PERMISSION.ACCESS_NETWORK_STATE” /> <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” /> <uses-permission android:name=”com.google.android.providers.gsf.permission.READ_GSERVICES”/> //access location of the phone <uses-permission android:name=”android.permission.ACCESS_COARSE_LOCATION”/> <uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION”/> <application android:allowBackup=”true” android:icon=”@mipmap/ic_launcher” android:label=”@string/app_name” android:theme=”@style/AppTheme” > <meta-data android:name=”com.google.android.maps.v2.API_KEY” android:value=”AIzaSyAqhlJdujwA4_XYCVoDk0t3zG9H_TM3jZ4″/> <meta-data android:name=”com.google.android.gms.version” android:value=”@integer/google_play_services_version”/> </application> layout activity_map.xml <?xml version=”1.0″ encoding=”utf-8″?> <fragment xmlns:android=”http://schemas.android.com/apk/res/android” READ MORE