Skip to main content

Posts

SearchView Widget in Android

Android SearchView widget, users enter search queries and can then submit a request for the search provider offers search user interface. This survey shows a list of suggestions or proposals, or to launch into the existing results and users will allow you to get the result. Configuring the search widget Basic XML < android.support.v7.widget.SearchView android:layout_width = "match_parent" android:layout_height = "wrap_content" android:text = "Hello World!" /> Search widget provides the same functionality as the search dialog. It has been operating in accordance with the user to perform a search, and it can search suggestions and voice search. Action Bar will search widget not an option for you, instead of you can put the layout of the search widget on the ground. Create new android project Configure dependencies. add follow code dependencies { // Other dependencies .... compile 'com.a...

Single Page Application With Laravel 5.3 And Vue.js 2.1.x

Description: Single Page Application With Laravel 5.3 And Vue.js 2.1.x Single Page Application with Laravel 5.3 and Vue.js 2.1.x. Refer the source code for better understanding. Frameworks and Libraries: - Laravel 5.3 - Vue.js 2.1.x - Vue Router - axios Provides: - CRUD - Single Page Application - Pagination - Sorting by columns - Advance filter - Filter relations - - - Source Code: https://github.com/codekerala/spa-laravel-vuejs - - - You should follow Code .

Laravel 5 and Vue.Js : Simple C.R.U.D with Notification and Pagination

Learn laravel 5.3 step by step for beginners : This will show you how to Create CRUD (Create, read, update, delete) Operations with vue.js and laravel 5.3 for beginners, FULL SOURCE CODE is here http://www.hc-kr.com/2016/11/laravel-5-vuejs-crud-with-notification-pagination-laravel.html

Learn to Make Ground Overlay Google Maps on Android

A land overlay is an image that is a permanent map. Unlike markers , ground cover on the ground to accommodate the screen oriented, turn, tilt, or zoom the map to change the orientation of the image. Terrestrial overlays are useful when you want to define an image in a region on the map. If you want to add rich images that cover a large part of the map, you should consider covering tiles. Create a new android maps project 1. Start Android Studio. 2. Create a new project as follows:  If you see the Welcome to Android Studio dialog, choose Start a new Android Studio project, available under 'Quick Start' on the right of the dialog.  If you see the Welcome to Android Studio dialog, choose Start a new Android Studio project, available under 'Quick Start' on the right of the dialog. Otherwise, click File in the Android Studio menu bar, then New, New Project. 3. Enter your app name, company domain, and project location, as prompted. Then click Next. ...

Learn to Use Google Maps With Multiple Markers on Android

This tutorial the use of aggregate tags when data requires a large number of data points on the map. The Tag Collection tool helps you manage multiple tags at different magnification levels. To be precise, the "signs" are actually 'objects' at this stage and only become "signs" when they are taken. But for clarity, this document will be called "signs" around. Google Maps Android Marker Clustering Utility By clustering your markers, you can put a large number of markers on a map without making the map hard to read. To use the marker clustering utility, you will need to add markers as ClusterItem objects to the ClusterManager . The ClusterManager passes the markers to the Algorithm, which transforms them into a set of clusters. The ClusterRenderer takes care of the rendering, by adding and removing clusters and individual markers. The ClusterRenderer and Algorithm are pluggable and can be customized. Create a new android maps pr...

Get SHA1 Key in Android Studio

Certain Google Play services (such as Google Sign-in and App Invites) require you to provide the SHA-1 of your signing certificate so we can create an OAuth2 client and API key for your app. To get your SHA-1, follow these instructions: 1. Open Android Studio 2. Open Your Project 3. Click on Gradle (From Right Side Panel, you will see Gradle Bar) 4. Click on Refresh (Click on Refresh from Gradle Bar , you will see List Gradle scripts of your Project) 5. Click on Your Project (Your Project Name form List) 6. Click on Tasks/Android 7. Double Click on signingReport (You will get SHA1 and MD5 in Run Bar)

Learn to Integrating Google Sign-In into Your Android App

Start Integrating Google Sign-In into Your Android App start logging in Google for your application, you must configure the Google API Console project and create your Android Studio project. Get a configuration file  The configuration file provides service specific information for your application. To achieve this, you need to select an existing project for your application or create a new one. You should also provide a name for your application package. Visit Google Api Console to Configure and get configuration file to add to your android project Add your android project package. Authenticating Your Client Open a terminal and run the keytool utility provided with Java to get the SHA-1 fingerprint of the certificate. You should get both the release and debug certificate fingerprints. Visit my previous post How To Get SHA1 Key Click continue to generate configuration file to add to android project Click download configuration file and then copy google-servi...