Intent in Android | Calling Activity

  Рет қаралды 49,242

Telusko

Telusko

Күн бұрын

Пікірлер: 47
@mezziboi308
@mezziboi308 7 жыл бұрын
education has no boundaries..it has no enemy.sitting in pakistan learning android from an indian teacher
@davyzeng
@davyzeng 6 жыл бұрын
i WANNA give you a big kiss cause you are the one who made me be clear of the usage of Intent. thanks a million man
@sayanmukherjee1956
@sayanmukherjee1956 8 жыл бұрын
Excellent explanation Naveen, Thank you for these wonderful videos. One request, We want more videos on intent use in starting service and broadcasting etc.
@inspired7606
@inspired7606 7 жыл бұрын
waw well explained. Right to the point thank you, Navin from Boston.
@sauru265
@sauru265 5 жыл бұрын
Hi Naveen,. Please add more videos related to Android basics like broadcast and fragments.. Thanks
@rajedeepak789
@rajedeepak789 8 жыл бұрын
Great Video sir. Plz make complete advance android development tutorial.
@furqanansari39
@furqanansari39 8 жыл бұрын
sir thanx for doing such a great effort for beigners I want to ask what is implicit intent you had explain but in detail can you explain
@Loveyounils
@Loveyounils 6 жыл бұрын
Furqan Ansari if you want to use system services like default camera ,stock android music player or your chrome browser in your application we used implicit intent. Best example when you download songs from chrome browser and after clicking on that song music players gets open. Here your chrome browser accessing music player as a service
@snehal5429
@snehal5429 5 жыл бұрын
Instead of using clicker method You can also do the same thing by defining a new method and set that method to your button Put that Intent and Start activity in this method just like we did in addition of two no.s
@kevinpetrasek1554
@kevinpetrasek1554 7 жыл бұрын
Very clear. Thank you!
@ijazkhanniazi800
@ijazkhanniazi800 3 жыл бұрын
What was the purpose of label in putExtra("This label",var)
@shubhampushpkar6111
@shubhampushpkar6111 7 жыл бұрын
can uh upload video for sending data through bluetooth along with enabling and disaling.
@sudeeshmj4716
@sudeeshmj4716 7 жыл бұрын
good one,but have doubt on the variable passing
@ItsMePP
@ItsMePP 5 жыл бұрын
Sir I used intent on button click. It's working well for jumping from 1st activity to the 2nd..but from 2nd activity button it is not jumping on the 3rd activity. Can you plz help me with that
@komalkasyap7104
@komalkasyap7104 6 жыл бұрын
Sir, can you tell me what to change in manifest XML file. I got an error while running.plzzz reply..
@heeral66
@heeral66 8 жыл бұрын
Did you add the ShowData.java file in your AndroidManifest.xml? I am getting an error that Activity not found :(
@vanessapalaciossharma8289
@vanessapalaciossharma8289 7 жыл бұрын
Sir, do implicit intents slow down the app? do they require more storage space? Thank you all the way from Oregon :)
@Loveyounils
@Loveyounils 6 жыл бұрын
vanessa palacios sharma nope.
@071-ruchitdave6
@071-ruchitdave6 4 жыл бұрын
Need more videos in details on android
@suprememaster1951
@suprememaster1951 7 жыл бұрын
how to make an alarm activity? Where by the alarm will sound after setting the time, then the alarm activity will appear on the screen to prompt the user to stop the alarm and exit program either by pressing the stop button on the screen, back button or the home button. In addition to the alarm activity, let's include a notification whenever the alarm activity is activated and sounded. After pressing the notification, the notification will bring you to the alarm activity to stop the alarm and exit the program with the same stop features to stop the alarm mentioned earlier. Thank you!
@jithind-feverx2818
@jithind-feverx2818 6 жыл бұрын
I am looking for this video 😘😘
@neeleshkumar9272
@neeleshkumar9272 7 жыл бұрын
I cant see the details in my second activity..except Hello.. I have the ID more than 10 times..still not working
@educatorestrada29
@educatorestrada29 7 жыл бұрын
I need help with an intent and activity window, where can i send my botched up program.
@urnasir22
@urnasir22 7 жыл бұрын
Sir Please make another video in Intent (a) Starting the Service and (b) Delivering the BroadCast
@anamikasaxena3119
@anamikasaxena3119 5 жыл бұрын
Now where is the other and previous vedio
@f4bnsky294
@f4bnsky294 6 жыл бұрын
Thank you sir
@beeriyobarwaaqo372
@beeriyobarwaaqo372 6 жыл бұрын
Can i you share the code with us in order to practice pls
@girishmahamuni1830
@girishmahamuni1830 5 жыл бұрын
Thank u sir . but what is bundle and key in intent
@NosirrahRage
@NosirrahRage 7 жыл бұрын
Just an additional pointer if any of you guys have the same problem. Make sure you declare the activity within the android manifest xml file otherwise nothing will happen.
@komalkasyap7104
@komalkasyap7104 6 жыл бұрын
please tell me what to change in manifest file , sir plz reply..
@ganga4750
@ganga4750 7 жыл бұрын
Hello Sir, How to start an activity from a pojo (non activity class) thanks
@Loveyounils
@Loveyounils 6 жыл бұрын
You need to pass the activity context to the pojo class construtor through which you can start activity from pojo class
@andrewmarbaniang
@andrewmarbaniang 8 жыл бұрын
Tried to follow the tutorial. I created the second Activity with one ImageView and a button but when i call the second activity from my MainActivity the ImageView doesn't show except for the button. So how should it be done?
@alaabidalhussain2710
@alaabidalhussain2710 5 жыл бұрын
why image view, it should have been text view as you are displaying text
@Artikumari-ko8pj
@Artikumari-ko8pj 6 жыл бұрын
i want to pass the float,double,integer,string type value from one activity to another using intent in Android studio
@Loveyounils
@Loveyounils 6 жыл бұрын
Arti kumari use Bundles. Bundle bundle = new Bundle (); bundle.putString("name","abcd"); bundle.putFloat("myfloat",1.8); and pass it into your intent object intent.putExtras(bundle); For more information search android Bundle on google
@JesusisAlive_33
@JesusisAlive_33 4 жыл бұрын
@@Loveyounils or you could also use the Intent e.g Intent intent = new Intent(a.this, b.class) intent.putextra("float", 1.5f) intent.putextra("long", 1000000000) Since there is overloads of putextra for these type values
@himanipahuja6259
@himanipahuja6259 6 жыл бұрын
When i m clicking on button for going in second activity my app is going to close what should i do for this
@Loveyounils
@Loveyounils 6 жыл бұрын
Himani Pahuja it's because there is an error in your application. You can find the error in logcat in a red line. Read carefully what is the error. Then try to solved the error by yourself. If there is still problem copy the error name and search it on Google.
@sushilsharma-fj3gj
@sushilsharma-fj3gj 6 жыл бұрын
pushExtra is not working in my andriod studio
@Loveyounils
@Loveyounils 6 жыл бұрын
sushil sharma it's putExtra
@imAdityaGolu
@imAdityaGolu 5 жыл бұрын
Not even the putExtra is working ! What should we do now
@antareepdas3325
@antareepdas3325 4 жыл бұрын
Har Jagah ek jaisai name kyu sir.. samjhne mein bohut taqleef ho raha hai..😥
@antareepdas3325
@antareepdas3325 4 жыл бұрын
Sorry to say but your Name convection is too bad.😡
@dannipatibalireddy1139
@dannipatibalireddy1139 8 жыл бұрын
i dont want to show my password it should like ************ this way what we have to naveen reddy garu
@divyangshah99
@divyangshah99 8 жыл бұрын
use input type as TextPassword
Working with View Visibility in Android
7:52
Telusko
Рет қаралды 76 М.
Working with RadioButton, Toast in Android
20:20
Telusko
Рет қаралды 38 М.
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН
Intent in Android Theory
5:15
Telusko
Рет қаралды 104 М.
Android Tutorial for Beginners | Views in Android
6:43
Telusko
Рет қаралды 67 М.
Asynctask in Android -Theory | Android Tutorial for Beginner
12:51
Activity Lifecycle in Android
6:20
Telusko
Рет қаралды 163 М.
5 NEW FEATURES IN GENSHIN IMPACT 5.3 UPDATE (CONDENSED LIVESTREAM)
9:44
Android Tutorial for Beginners | Layouts in Android
7:41
Telusko
Рет қаралды 96 М.
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН