fbpx

Google’s six magic lines of search code Tag

Welcome to the Weekend Tech Round-up. With just 6 lines of code in your AndroidManifest.xml file,  Android’s on-device search opens and scours your applications for data. The lines of code are:Move to Trash <activity android:name=”.SearchableActivity”> <intent-filter> <action android:name=”com.google.android.gms.actions.SEARCH_ACTION”/> <category android:name=”android.intent.category.DEFAULT”/> </intent-filter> </activity> For developers, this coding technique allows you to integrate power functionalities in...