Skip to main content

How to add Google Voice Search in Kodular Creator?

 

How to add Google Voice Search in Kodular Creator?

So guys today we are going to learn about Kodular components. Today we will be discussing how to use Voice search in Kodular. Now, here we start our tutorial.

How to add Google Voice Search in Kodular Creator?

What is Google Voice Search?

Google voice search is a function in which we can search in our device by speaking our query rather than typing it to search. You may have used it manny time but today We are going to learn how to implement this our android app.

Why should we use it?

We can use voice to text option for many tasks such as,
1. In browser for Search option.
2. For getting voice message.
3. For use of translation etc.

So,these were the some of uses of voice to text option. You guys can use this anywhere you feel need of voice input from user.

How to implement this in our app?

 Step 1: Firstly you need to check for speech recognizer component under the option of media in sidebar.

Speech Recogniser


Properties:

We don't have any properties options for speech recognizer currently in Kodular Creator. Maybe we could have some in future.

Blocks:

We have the following main blocks of Speech Recognizer in Kodular Creator:

1. Get Text:
Get text from speech
This block is used to get text from user.

2. After getting text:
When got text from speech?
This block provide the speech in form of text by the variable result.

How to use the text for searching?

For using this you need to add a web Viewer to get the results....

Step 1: For searching you need to use the block 'Get Text' when you want to get text for searching from user.
Step 2: Then get the result by using after getting text.

Step 3: Now call web viewer to go to URL of the results. For getting URL for results you need to join the text of query you got from User with this text:

https://www.google.com/search?q=  + Speech From User

Also set the block as....

Go to results page In web View



In similar way you can use this for Searching in Youtube just change the "https://www.google.com/search?q=" to  "https://www.youtube.com/results?search_query=" and you will get the results in the web viewer.

Here our tutorial ends we will be back with a new and fresh tutorial. Till then......

Happy Koding.....

Comments

Popular posts from this blog

Kodular Basics- Getting started with Kodular

What Is Kodular? Kodular is a online software which allows us to make android apps without any programming knowledge. Kodular's enable us to make fantastic android apps using their blocks-type editor.We can make our apps stand out with the material design UI. Using Kodular we can make android apps just by dragging and dropping components provided in Kodular Creator.We also need not to write any code to make our app working. We just have to specify blocks in kodular creator and we are out of the tension to write Codes. Getting Started With Kodular :   For making apps you just need to go to Kodular's Creator and sign up there with your email and activate your account.You can create Kodular account and make apps for free. There aren't any charges to use Kodular Creator. So just go Kodular.io and sign up there and start happy coding and app making.  Kodular Dashboard: After you have signed up for Kodular creator,select the option "Create Apps" and you will be redirect...

How to use Youtube Player in Kodular Creator?

  Welcome guys, today we are back again with our Today's tutorial on "How to use Youtube Player in Kodular Creator?". Now, let's directly start our tutorial without wasting any more time in Talking... How to use Youtube Player in Kodular Creator? 1. What is Youtube Player? Youtube Player is a component given in Kodular creator which we can implement in our app for free. This component enables us to play any video uploaded on youtube in our app.For playing any Video we only need the video ID of that youtube video which is found in the url of the video. This is like a video player in which we can play and control any youtube video without opening URL of video in Webview and which improve our app UI and UX. 2. Why Youtube Video Player? We use Youtube video player because of many benefits some of them are described as below: 1. To show any tutorial for our app. 2. Can control our app better. 3. This is a UX improving Component. 4. No need to get specific server if we need...

How to use dynamic component in Kodular Creator ?

How to use dynamic components in Kodular Creator? Welcome back my dear friends, today we are back again with a complete new tutorial. Today we are going to learn How to use Dynamic components in Kodular Creator? As of all our tutorials I assure you you will find this tutorial very useful while developing any of you application which the no. of components are not fixed. So, we use dynamic components to add as much as number of components as we want. So, here we start our tutorial with some of FAQ's that will help you to learn what is concept of dynamic components if you didn't understood "What does dynamic components mean?"  FAQ's about Dynamic components 1. What are dynamic components? Dynamic components are the components which allows us to show as much as number of components in our application as we want. So, that we need not to update app to add any component in our application. This is useful when we are developing any application like Shopping application in...