Пікірлер
@sonataarcfan9279
@sonataarcfan9279 24 күн бұрын
im getting null at FragmentSavedState, any idea?
@anonymousbangla2000
@anonymousbangla2000 Ай бұрын
Thanks. It works
@CodeVedanam
@CodeVedanam 27 күн бұрын
Welcome 👍
@wesyy29
@wesyy29 Ай бұрын
Thanks man, we need you
@CodeVedanam
@CodeVedanam 27 күн бұрын
Any time!
@TahaMMD
@TahaMMD Ай бұрын
thanks a lot ❤❤
@CodeVedanam
@CodeVedanam 27 күн бұрын
You're welcome 😊
@rupchowdhury1999
@rupchowdhury1999 Ай бұрын
Thank you so much, brother. But how I can modify transition types??
@ricardoalinas6167
@ricardoalinas6167 2 ай бұрын
When you press stop, and then start does not work
@Anvarbek_Atabayev
@Anvarbek_Atabayev 2 ай бұрын
In this video, the meaning is only to change the text, I think it would be better if you change the fragment
@cocotower
@cocotower 2 ай бұрын
Android Studio is flawed terribly in so many ways. We need a + button to Add a View to the current point in the tree in Layout mode. We can drag and drop views but can't add them without writing XML code.
@user-rb2uw1ol8d
@user-rb2uw1ol8d 3 ай бұрын
I supposed to get 6number so can get porn video I have get it and send it to them thanks you
@mdsabuj8125
@mdsabuj8125 4 ай бұрын
helpful video
@bhagtizone001
@bhagtizone001 4 ай бұрын
Thankyou, Great Thumbnail bro.
@sadenlav
@sadenlav 5 ай бұрын
How to insert item to database all items in list?
@teladoum9
@teladoum9 5 ай бұрын
Nice. But How use imagview instead TextView. For example, here You write Tab1, Tab2, I want in the place of tab1 we use image like in WhatsApp or other. Thank
@aleksboboychev
@aleksboboychev 5 ай бұрын
Thank you so much!
@peterknut5688
@peterknut5688 5 ай бұрын
Thanks so much. That is absolute the coolest app i have seen in youtube. It is so cool.
@fithnanriatan
@fithnanriatan 6 ай бұрын
kotlin please
@syedsyafi942
@syedsyafi942 7 ай бұрын
Is the code working? bcs you didn't show the result at the end of video
@estefania2321
@estefania2321 4 ай бұрын
yes
@Armetron
@Armetron 7 ай бұрын
Now deprecated
@acefuzzball7969
@acefuzzball7969 7 ай бұрын
Is possible to use speech to text without the internet?
@janbergstrom645
@janbergstrom645 7 ай бұрын
This tutorial is up to date with changing conditions Sdk34 for fragments which many other tutorial videos are not. Good basic tutorial for the migration work.
@stillpickinganame5350
@stillpickinganame5350 7 ай бұрын
Thanks!!
@hunsendrake2535
@hunsendrake2535 8 ай бұрын
where is app:cardCornerRadius comes from?
@theuniversalmedia
@theuniversalmedia 9 ай бұрын
B
@daniyalarif5262
@daniyalarif5262 9 ай бұрын
Please use good quality voice.Voice uable to hear
@pandalyrics383
@pandalyrics383 9 ай бұрын
How to get the voice to text in Android studio
@yerbolkabzitov9216
@yerbolkabzitov9216 10 ай бұрын
Thanks 🔥
@bezelyesevenordek
@bezelyesevenordek 10 ай бұрын
video quality is sky-high, but not the code quality. sorry fella, hope you doing better now
@VISHAL-rr9wn
@VISHAL-rr9wn 11 ай бұрын
What you press to open select method to override or implement at 5:00
@adnanhabib3059
@adnanhabib3059 11 ай бұрын
But this caused crash to my application ActivityResultLauncher<Intent> launcher = registerForActivityResult( new ActivityResultContracts.StartActivityForResult(), new ActivityResultCallback<ActivityResult>() { @Override public void onActivityResult(ActivityResult result) { if (result.getResultCode() == RESULT_OK&&result.getData()!=null) { Intent data = result.getData(); binding.translatedText.setText(data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS).get(0)); }else{ Toast.makeText(MainActivity.this, "something went wrong", Toast.LENGTH_SHORT).show(); } } }); binding.voiceToText.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); //intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE,Locale.getDefault()); intent.putExtra(RecognizerIntent.EXTRA_PROMPT,"Say Something now...."); launcher.launch(intent); Toast.makeText(MainActivity.this, "voice to text is clicked", Toast.LENGTH_SHORT).show(); } });
@CountryHouseIncubators
@CountryHouseIncubators 11 ай бұрын
Is there a way to change how it handles numbers. If i say "six hundred" or wether i say "six zero zero", It gives the same output as 600
@CountryHouseIncubators
@CountryHouseIncubators 11 ай бұрын
Is there an option to get it to represent numbers as words. For eg 600 as "six hundred" and 5-7-7 as "five seven seven"?
@usernamesareforidiot
@usernamesareforidiot Жыл бұрын
To anyone using this guide: The Play button doesn't work after using the Stop button. Your MainActivity Java code should look like this. Replace anything in CAPS with your specific file names. package com.example.YOUR_PACKAGE_NAME; import android.media.MediaPlayer; import android.os.Bundle; import android.view.View; import android.widget.ImageButton; import androidx.appcompat.app.AppCompatActivity; public class YOUR_JAVA_FILE extends AppCompatActivity { ImageButton play, pause, stop; MediaPlayer mediaPlayer; boolean isPlaying = false; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); play = findViewById(R.id.play); pause = findViewById(R.id.pause); stop = findViewById(R.id.stop); mediaPlayer = MediaPlayer.create(this, R.raw.YOUR_MUSIC_FILE); play.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if (!isPlaying) { mediaPlayer.start(); isPlaying = true; } else if (!mediaPlayer.isPlaying()) { mediaPlayer.seekTo(0); mediaPlayer.start(); } } }); pause.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if (isPlaying) { mediaPlayer.pause(); isPlaying = false; } } }); stop.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (isPlaying) { mediaPlayer.stop(); mediaPlayer.reset(); mediaPlayer.release(); isPlaying = false; mediaPlayer = MediaPlayer.create(MainActivityJ.this, R.raw.YOUR_MUSIC_FILE); } } }) ;} }
@rafaellemus4894
@rafaellemus4894 Жыл бұрын
Excelent !!
@emilyxiao403
@emilyxiao403 Жыл бұрын
can u make a kotlin tutorial of these functions?
@user-ce9lb9et7w
@user-ce9lb9et7w Жыл бұрын
do it uses google cloud api ?
@devyaroz
@devyaroz Жыл бұрын
Thank you for not using deprecated methods
@VarunPrasadoneplusone
@VarunPrasadoneplusone Жыл бұрын
Thanks for making this video
@ayushmangupta6682
@ayushmangupta6682 Жыл бұрын
Notification is not coming when app is closed
@giangnguyenbang8073
@giangnguyenbang8073 Жыл бұрын
I want create function pick video like this your video
@giangnguyenbang8073
@giangnguyenbang8073 Жыл бұрын
Can you help me?
@ghayratsamiev1142
@ghayratsamiev1142 Жыл бұрын
when I code ActivityMainBinding it shows an error that no such class, why?
@Ricky658
@Ricky658 Жыл бұрын
Hi, is posible to put very close item above previous one like folowers in facebook page: drive.google.com/file/d/1dhjjvBgVCLWmkQRpYNzfssw5c77PtzMn/view?usp=sharing
@alexbulavo3433
@alexbulavo3433 Жыл бұрын
I finally got it! Thank you so much.
@rajraja7314
@rajraja7314 Жыл бұрын
thanks for help real osm video hai ek dm jakaaashhhhhhhhhhhhhhhhhhhhhhhh
@antoninopampinella3048
@antoninopampinella3048 Жыл бұрын
it gives me this error during the run time when i click on the button to strart the activity where the scroll layout is E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.dietapp, PID: 21413 java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.dietapp/com.example.dietapp.Peso}: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.pm.ApplicationInfo android.content.Context.getApplicationInfo()' on a null object reference at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3194) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016) at android.os.Handler.dispatchMessage(Handler.java:107) at android.os.Looper.loop(Looper.java:214) at android.app.ActivityThread.main(ActivityThread.java:7356) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930) Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.pm.ApplicationInfo android.content.Context.getApplicationInfo()' on a null object reference at android.content.ContextWrapper.getApplicationInfo(ContextWrapper.java:163) at android.view.ContextThemeWrapper.getTheme(ContextThemeWrapper.java:174) at android.content.Context.obtainStyledAttributes(Context.java:738) at androidx.appcompat.app.AppCompatDelegateImpl.createSubDecor(AppCompatDelegateImpl.java:922) at androidx.appcompat.app.AppCompatDelegateImpl.ensureSubDecor(AppCompatDelegateImpl.java:889) at androidx.appcompat.app.AppCompatDelegateImpl.findViewById(AppCompatDelegateImpl.java:691) at androidx.appcompat.app.AppCompatActivity.findViewById(AppCompatActivity.java:264) at com.example.dietapp.Peso.<init>(Peso.java:22) at java.lang.Class.newInstance(Native Method) at android.app.AppComponentFactory.instantiateActivity(AppComponentFactory.java:95) at androidx.core.app.CoreComponentFactory.instantiateActivity(CoreComponentFactory.java:45) at android.app.Instrumentation.newActivity(Instrumentation.java:1243) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3182) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016) at android.os.Handler.dispatchMessage(Handler.java:107) at android.os.Looper.loop(Looper.java:214) at android.app.ActivityThread.main(ActivityThread.java:7356) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)
@antoninopampinella3048
@antoninopampinella3048 Жыл бұрын
is it maybe because i did it in a secondary activity?
@antoninopampinella3048
@antoninopampinella3048 Жыл бұрын
Can I use constrain layout instead of relative layout?
@CodeVedanam
@CodeVedanam Жыл бұрын
Yes you can
@CareerHirings
@CareerHirings Жыл бұрын
ekdum mast...thankyou
@koriakinides
@koriakinides Жыл бұрын
Your mic give same sound quality as wired phones from middle XX century, also you clearly dont speak BBC english... and that music on top of it... why?! It would be such a lovely video material, unfortuantelly I didnt understand more than a half of what you said :(
@dhineshsaravanan9292
@dhineshsaravanan9292 Жыл бұрын
Sir is the notification created by this method will able to display the notifications to all the users who are using the app
@factzfactory4956
@factzfactory4956 Жыл бұрын
Sir please teach backstack of fragments in tab layout
@isuruthiwanka2595
@isuruthiwanka2595 Жыл бұрын
Hey buddy I still get the error: @RequiresApi (api = Build.VERSION_CODES.KITKAT) public void rule_no_01_expand(View view) { int v = (rule_01_constraint_layout.getVisibility() == View.GONE)? View.VISIBLE : View.GONE; TransitionManager.beginDelayedTransition(rule_01_linear_layout, new AutoTransition()); } here "rule_01_linear_layout" is linear layout. Error : 'beginDelayedTransition(android.view.ViewGroup, android.transition.Transition)' in 'android.transition.TransitionManager' cannot be applied to '(android.widget.LinearLayout, androidx.transition.AutoTransition)' why is that the case?